Top "Branch" questions

A "branch" is a term used in version control systems to represent an independent line of development.

Fix GitLab error: "you are not allowed to push code to protected branches on this project"?

I have a problem when I push my codes to git while I have developer access in my project, but …

branch gitlab git-commit git-push git-add
Git push: "fatal 'origin' does not appear to be a git repository - fatal Could not read from remote repository."

I know similar questions have already been asked. But, I believe my issue is due to a mistake I have …

git github version-control branch
Renaming branches remotely in Git

If there is a repository that I only have git:// access to (and would usually just push+pull), is there …

git branch rename
How do I run git log to see changes only for a specific branch?

I have a local branch tracking the remote/master branch. After running git-pull and git-log, the log will show all …

git branch git-branch git-log
What is trunk, branch and tag in Subversion?

Possible Duplicate: What do “branch”, “tag” and “trunk” really mean? What is a trunk, branch and tag in Subversion and …

svn branch tags conventions trunk
How do I create a new Git branch from an old commit?

Possible Duplicate / a more recent/less clear question Branch from a previous commit using Git I have a Git branch …

git branch commit
How do you remove an invalid remote branch reference from Git?

In my current repo I have the following output: $ git branch -a * master remotes/origin/master remotes/public/master I …

git branch remote-branch
Why do I have to "git push --set-upstream origin <branch>"?

I created a local branch for testing Solaris and Sun Studio. I then pushed the branch upstream. After committing a …

git branch
Update a local branch with the changes from a tracked remote branch

I have a local branch named 'my_local_branch', which tracks a remote branch origin/my_remote_branch. Now, the …

git branch git-branch remote-branch
How to determine when a Git branch was created?

Is there a way to determine when a Git branch was created? I have a branch in my repo and …

git branch git-branch