Where can I see the commit history on the gitHub website? - web

I am looking for the history button on gitHub for all the past git commits.
These are buttons on the gitHub page.
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Settings
1 branch
0 tags

On the repository page there is commits button below the Big Green Pull-Down Code button to see all commits. Clicking on it will open all the history

On the repository page there is a button labeled with three dots that has a pull-down menu. One of the options on this pull-down menu is "Commits":
[Note: this should just be a correction to the answer by #Hamza Mughal, but when I tried to edit that answer I get an error that the "Edit queue is full." If someone knows how to paste my picture into the original answer, since it's just an update, that would be great.]

Related

Gitlab: bookmark repo functionality - how and what?

Gitlab has little bookmark icons next to each repo (see screenshot below). However, clicking the icon (or anywhere in the row for that repo) takes you to the repo - the whole thing is a link, so clicking the icon doesn't bookmark the repo. I also can't find a way to bookmark a repo via its settings.
Furthermore, what does the bookmark functionality do? I was imagining that it pins it to the top of your list, or makes it available on a bookmarks page, both of which would be really useful for me ... but I'm not actually sure.
Weirdly enough, google really isn't helping me out with this one. Does anyone have some info about this functionality?
This is an example of a bit of a UX convention violation - you're right that icon is absolutely a bookmark and typically used for bookmarking something. However in this case it just signifies that row is a Project as opposed to a Group. If that icon is a bookmark, it's a Project. If that icon is a folder, it's a Group.
If you want to favorite Projects, you should star them by clicking on the Star icon in the upper right of the Project home screen, then when you click on "Projects" you can click on "Starred Projects" and see all your projects you've currently starred. You can also filter activity based on starred projects.

Adding a comment to a task in Jira software

At the bottom of the task, under Activity, I am seeing All, Comments, Work Log, History and Activity. I selected the Comments tab. However, I don't see a way to add a comment.
The Comments button which you are talking about shows all the comments. There is a Comment button with an icon just below the Activity tab which can be used to comment on the tasks as shown in the pic
here.
This could be a permissions issue. If you do not have permission to add comments on a project then you will not see the button for adding a comment.
Confirm with your JIRA administrator that you have the "Add comments permission" for this particular project (or for all projects).

How to leave a GitLab project not owned by me?

If I had contributed in a project, for which I am not an owner or administrator, how can I get myself out of that project? I do not find the leave button as documented in issue 744.
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/744
The project owner has stopped responding to me and I badly want myself out of it. Please help.
Updated answer for 2020:
Leaving a group automatically removes you from all projects added by that group.
At the top menu chose Groups\Your Groups. Select the group you want to leave and press leave.
Follow these steps:
On projects page select the project
On top right corner select settings button
Then select members
Finally you'll see LEAVE button here
Follow These steps
Go to the main project url, not the sub urls
E.g If the project name is hng-interns -- Go to https://gitlab.com/hng-interns instead of https://gitlab.com/hng-interns/factory
Click on the Leave group button
Click okay in the alert box that shows up.
That's all!
In new gitlab version, you can leave a project not owned by you, by following these steps:
1- Go to the project page
2- Click on Project Information at the top left corner
3- Click on members
4- Find your name among members and click on red leave button
Click Menu on the top left, Groups, Your groups.
Click on Your groups on the next page that loads.
Select Group
You will see picture similar two the second screenshot below. Instead of Withdraw Access Request you'll see Leave Group

How to link a work load item with a commited change?

I am working with Git for Visual Studio Online
I added a Product Back Log item.
I added some files & commited the change. (It did not linked for some reason)
I made some more commits to the project & synced.
My 1st change was not linked with the Back log item & it still shows
as pending under tasks.
How do I link the work item with my first commit?
Normally to link a commit to a work item you just reference the work item number in the commit message, for example git commit -am "related to PBI #1234". If it didn't work, you may have made a typo in the commit message.
Now, given you have already pushed your changes, amending your earlier comment to change the message would require an interactive rebase and pushing the result of that would be a bad thing (I'm assuming the repo is shared).
What you can do instead is go to the work item and under the Links tab, click the Link To... icon to add a new link. Select 'Commit' and then enter the SHA1 of the commit you want to link to.
Don't worry if you don't know the SHA1. Just use the ... button to browse your history and select the commit you're interested in.

Auto Formatting merge message in TortoiseSVN

I try to configure svn properties of my project to make TortoiseSVN generate merge message logs automatically.
There's a manual on TSVN site and a question at stackoverflow.
So I edited properties of /trunk folder and set my custom tsvn:mergelogtemplatetitle and tsvn:mergelogtemplatereversetitle properties there.
But after that nothing changed. I tried to merge some commits from /branches/mybranch to /trunk. But after merging in commit window I pressed "Recent Messages" button and there're auto-generated commit messages in default format. Not in my.
What do I do wrong?
And some more questions.
How to open a window like in Figure 4.48 at TSVN manual?
Can I change format of log message in form with selecting revisions to merge?

Resources