The default action of git push
and git push origin
has changed since git
version 1.7.11
:
- Before
1.7.11
,git push
by default pushes all branches that also exist remotely with the same name. - Since
1.7.11
,git push
by default pushes the current branch to a remote branch with the same name.
Before and after version 1.7.11
, the default behavior can be configured with the push.default
configuration option. This configuration option has been introduced in git
version 1.6.3
.
Related Posts:
- How do I delete a Git branch locally and remotely?
- How do I delete a Git branch locally and remotely?
- What does ‘–set-upstream’ do?
- What does ‘–set-upstream’ do?
- error: src refspec master does not match any
- How do I push a new local branch to a remote Git repository and track it too?
- How do I push a new local branch to a remote Git repository and track it too?
- How do I push a new local branch to a remote Git repository and track it too?
- How do I properly force a Git push?
- GitHub: Permission denied (publickey). fatal: Could not read from remote repository
- How do you push a tag to a remote repository using Git?
- How to change the URI (URL) for a remote Git repository?
- Meaning of the GitHub message: push declined due to email privacy restrictions
- How to remove remote origin from a Git repository
- ! [rejected] master -> master (fetch first)
- Undoing a ‘git push’
- What are the differences between “git commit” and “git push”?
- What does git push origin HEAD mean?
- What does git push origin HEAD mean?
- How do I push a local Git branch to master branch in the remote?
- Git push hangs when pushing to Github?
- Git push requires username and password
- How do I use ‘git reset –hard HEAD’ to revert to a previous commit? [duplicate]
- How to cherry pick from 1 branch to another
- How to Git stash pop specific stash in 1.8.3?
- How do I revert a Git repository to a previous commit?
- How to merge branch to master?
- What happens when I do git pull origin master in the develop branch?
- What is the `git restore` command and what is the difference between `git restore` and `git reset`?
- What is Git pruning?
- git – remote add origin vs remote set-url origin
- Git: Message ‘src refspec master does not match any’ when pushing commits in Git
- How to upgrade Git on Windows to the latest version
- Reset local repository branch to be just like remote repository HEAD
- LF will be replaced by CRLF in git – What is that and is it important? [duplicate]
- git: fatal: Could not read from remote repository
- github changes not staged for commit
- Windows git “warning: LF will be replaced by CRLF”, is that warning tail backward?
- Git error: “Please make sure you have the correct access rights and the repository exists”
- How do I pull my project from github?
- Difference between Git and GitHub
- Could not open a connection to your authentication agent
- Hard reset of a single file
- How do I ignore an error on ‘git pull’ about my local changes would be overwritten by merge?
- How do I revert all local changes in Git managed project to previous state?
- How to revert multiple git commits?
- The following untracked working tree files would be overwritten by merge, but I don’t care
- You have not concluded your merge (MERGE_HEAD exists)
- How to compare files from two different branches
- git – pulling from specific branch
- How to pull a specific branch from Github
- How to copy commits from one branch to another?
- How to fully delete a git repository created with init?
- Trying to git pull with error: cannot open .git/FETCH_HEAD: Permission denied
- Git reset single file in feature branch to be the same as in master
- What is difference between ‘git reset –hard HEAD~1’ and ‘git reset –soft HEAD~1’?
- What are the differences between .gitignore and .gitkeep?
- Git – Undo pushed commits
- How to remove the shallow clone warning from HomeBrew
- Git Giving “fetch first” error when trying to push
- Files not updating using ‘git pull’
- What’s the difference between git switch and git checkout
- git checkout tag, git pull fails in branch
- How can I copy the content of a branch to a new local branch?
- Git: “please tell me who you are” error
- Git nothing added to commit but untracked files present – even with those files added to gitignore
- How to change folder with git bash?
- Git:nothing added to commit but untracked files present
- How to commit changes to another pre-existent branch
- git: How to ignore all present untracked files?
- Move existing, uncommitted work to a new branch in Git
- “git checkout
” is changing branch to “no branch” - Why I always Got Error “Push to origin/master was rejected”?
- How to resolve git status “Unmerged paths:”?
- Github Windows ‘Failed to sync this branch’
- How can I generate a Git patch for a specific commit?
- How do I list all of the files in a commit?
- Git keeps prompting me for a password
- How can I unstage my files again after making a local commit?
- Resolve Git merge conflicts in favor of their changes during a pull
- Git stash pop- needs merge, unable to refresh index
- Git – Remove commit from history
- Git merge without auto commit
- How to get Git to clone into current directory
- List submodules in a Git repository
- How can I reconcile detached HEAD with master/origin?
- How do you merge two Git repositories?
- How do I run git log to see changes only for a specific branch?
- How to get Git to clone into current directory
- How to search in commit messages using command line?
- Staging Deleted files
- How to get changes from another branch
- gerrit – git (pull vs checkout vs cherrypick) which is for what?
- GIT_DISCOVERY_ACROSS_FILESYSTEM not set
- key_load_public: invalid format
- Difference between git stash pop and git stash apply
- git fetch doesn’t update my local repository
- How do I show the changes which have been staged?
- GIT and Development URL’s point to production
- Best workflow for Git theme development with plugins [closed]