
(This is, in effect, what GitHub changed.)
GIT RENAME BRANCH FILE CODE
For a long time, Git has had, hard-coded into it, some code to stick the branch name master in there. This is the branch name that you're on, even if that branch name does not exist (yet).

So Git stores some name in the symbolic ref named HEAD. However, you must be on some branch in this new empty repository. However, when you're on master, Git traditionally generates only a message of the form merge branch X.Ī new, empty repository created by git init has no commits and therefore has no branches (because a branch can only exist by having commits on it). Merging auto-generates a message of the form merge branch X into Y when you are on branch Y and run git merge X. As we know, technically correct is the best kind of correct, so let me add a few caveats in this footnote: For more about GitHub's changeover, seeĭifference Between Main Branch and Master Branch in Github?ġThere are some technical flaws in this kind of claim. But this leaves your Git and GitHub's Git out of sync, as it were. Meanwhile, GitHub have already chosen to leap ahead and make their default initial branch name main instead of master. Currently, you can do this manually during or after a git init, 2 but the project makes Git just do it automatically, without requiring a second step: If for any reason you want any other name by default, you can configure that. Git has traditionally used the name master here, but there is a project to make this configurable, so that if you are French or Spanish you can use the name principal or première or primero, or if you prefer Maori, you can use matua or tuatahi. 1 You could use main, master, trunk, or any other name as the name of your first branch.

Check out this branch and integrate the remote changes hint: (e.g. ! HEAD -> main (non-fast-forward) error: failed to push some refs to ':xxxxxxx/xxx-project.git' hint: Updates were rejected because a pushed branch tip is behind its remote hint: counterpart. I tried git push origin HEAD:main but produced error: git/refs/remotes/origin/main but still git push -u origin main didn't work.

GIT RENAME BRANCH FILE UPDATE
git/refs/heads in my project i saw that there is only one file named master so i performed git remote update which added. I'm getting error which is as follows error: src refspec main does not match anyĮrror: failed to push some refs to ':xxxxxx/xxx-project.git'īut if I do git push -u origin master it is working perfectly and uploading my files to a separate branch named master. Whenever I'm trying to upload my files using git push -u origin main
