Top "Git-branch" questions

git-branch is the Git command that manages branches.

Get git current branch/tag name

How can I get the current branch or tag name for my working copy? I have seen references that indicate …

git branch git-branch git-checkout
Find the git branch or branches from commit id

Actually am try to get a report on merge conflicts. I used 'git blame' to see who has changed what …

git commit sha1 git-branch blame
Issue with git pull master is out of sync with origin master

These are the sequence of steps I have performed: committed my changes in branch to local master (commit id dc9…

git git-branch git-pull git-fetch
Git submodule to track remote branch

I'm trying to use git submodules for aggregating 10+ repositories into one structure for easy development. It is supposed to clone …

git git-branch git-submodules git-remote
git -- locking master branch for some users?

I would like to force other team-members to not work on the master-branch but on a development branch. we have …

git branch git-branch branching-and-merging
How can I rename my branch from TortoiseGit?

I know the way to rename branch from command line, but - since I'm using TortoiseGit - I'm curious if …

git rename git-branch tortoisegit
What's the difference between a Pull Request and a branch?

In the context of GitHub and Atlassian Stash, there is a common feature to do a Pull Request. What's the …

git github git-branch pull-request bitbucket-server
How to undo git flow feature finish?

I am learning git-flow and I just did git flow feature finish <feature-name>, which merged my feature branch …

git git-branch branching-and-merging git-flow
How do I move a commit between branches in Git?

I'm sure this is a simple thing that has been asked and answered, but I don't know what terms to …

git git-branch git-cherry-pick
How to git rebase -i for a range of commits?

Can I squash a range of commits for a local feature/topic branch using rebase that does not include the …

git commit git-branch rebase git-rebase