Your local branch doesn’t know about the remote branch. If you don’t tell git that your local branch (master) is supposed to compare itself to the remote counterpart (origin/master in this case); then git status
won’t tell you the difference between your branch and the remote one. So you should use:
git branch --set-upstream-to origin/master
or with the short option:
git branch -u origin/master
This options –set-upstream-to (or -u in short) was introduced in git 1.8.0.
Once you have set this option; git status
will show you something like:
# Your branch is ahead of 'origin/master' by 1 commit.
Related Posts:
- git error: failed to push some refs to remote
- Git error: “Please make sure you have the correct access rights and the repository exists”
- Untrack files from git temporarily
- Git, fatal: The remote end hung up unexpectedly
- Git – remote: Repository not found
- Pushing to Git returning Error Code 403 fatal: HTTP request failed
- Git master branch has no upstream branch
- How can I determine the URL that a local Git repository was originally cloned from?
- How to pull from one remote branch to another branch in git?
- Trying to git pull with error: cannot open .git/FETCH_HEAD: Permission denied
- How to git add a whole folder
- What does ‘git remote add upstream’ help achieve?
- How can I rollback a git repository to a specific commit?
- How to remove a directory from git repository?
- gpg failed to sign the data fatal: failed to write commit object
- Git pull origin
overwrites master? - Git merge with force overwrite
- Git Push ERROR: Repository not found
- How can I remove a commit on GitHub?
- Why does Git tell me “No such remote ‘origin'” when I try to push to origin?
- git returns http error 407 from proxy after CONNECT
- Git pull till a particular commit
- Does Git Add have a verbose switch
- Why does Git say my master branch is “already up to date” even though it is not?
- Git Clone – Repository not found
- git SSL certificate- Invalid certificate chain while accessing
- Git push existing repo to a new and different remote repo server?
- Differences between Commit, Commit and Push, Commit and Sync
- What is .gitignore exactly?
- Git: Message ‘src refspec master does not match any’ when pushing commits in Git
- Git: Message ‘src refspec master does not match any’ when pushing commits in Git
- How do I undo the most recent local commits in Git?
- How can I switch to another branch in git?
- GitHub: Permission denied (publickey). fatal: Could not read from remote repository
- GitHub – error: failed to push some refs to ‘[email protected]:myrepo.git’
- How to modify existing, unpushed commit messages?
- git – remote add origin vs remote set-url origin
- Git: Message ‘src refspec master does not match any’ when pushing commits in Git
- GitHub Error Message – Permission denied (publickey)
- Updating a local repository with changes from a GitHub repository
- Git push results in “Authentication Failed”
- github changes not staged for commit
- Git : fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists
- Git push results in “Authentication Failed”
- Download single files from GitHub
- How to draw checkbox or tick mark in GitHub Markdown table?
- How do I pull my project from github?
- Remove files from Git commit
- Difference between Git and GitHub
- Is it safe to download code from GitHub?
- How to draw checkbox or tick mark in GitHub Markdown table?
- How to solve SSL certificate: self signed certificate when cloning repo from github?
- How do I resolve git saying “Commit your changes or stash them before you can merge”?
- How to upload folders on GitHub
- How do I resolve git saying “Commit your changes or stash them before you can merge”?
- Please enter a commit message to explain why this merge is necessary, especially if it merges an updated upstream into a topic branch
- How to find my GitHub username so that I can be found via the URL?
- Pushing empty commits to remote
- github website publish cannot publish unborn HEAD
- fatal: The current branch master has no upstream branch
- How do I resolve git saying “Commit your changes or stash them before you can merge”?
- Superscript in markdown (Github flavored)?
- Create a tag in a GitHub repository
- How to fix HTTP 404 on Github Pages?
- Git: Could not resolve host github.com error while cloning remote repository in git
- How to pull a specific branch from Github
- GitHub: invalid username or password
- “Cannot publish, unborn head” error message
- Trying to git pull with error: cannot open .git/FETCH_HEAD: Permission denied
- How can I give access to a private GitHub repository?
- How do I update or sync a forked repository on GitHub?
- Can I share my private GitHub repository by link?
- There is no tracking information for the current branch
- Git push results in “Authentication Failed”
- Meaning of the GitHub message: push declined due to email privacy restrictions
- How do I create a folder in a GitHub repository?
- How to rename a directory/folder on GitHub website?
- “*** Please tell me who you are.” when using SSH key
- How to undo git reset –soft to get my changes back?
- Download a single folder or directory from a GitHub repo
- Pull request vs Merge request
- Clone A Private Repository (Github)
- How do I rename a repository on GitHub?
- What do raw.githubusercontent.com URLs represent?
- Superscript in markdown (Github flavored)?
- error: cannot lock ref.. ‘refs/tags’ exists; cannot create ‘refs/tags/
- “Key is invalid” message on GitHub
- Git: Installing Git in PATH with GitHub client for Windows
- ! [rejected] master -> master (fetch first)
- Why does ‘git commit’ not save my changes?
- How to git add a whole folder
- Github “Updates were rejected because the remote contains work that you do not have locally.”
- My new Github page isn’t showing up
- How to add images to README.md on GitHub?
- Unity Collaborate vs GitHub
- Where can I find the GitHub ID in my account?
- how to un fork the github repository?
- What are the differences between “git commit” and “git push”?
- “fatal: HttpRequestException encountered.” Error with GitHub/Bitbucket Repositories due to dropping TLS-1.0 support
- SourceTree keeps asking for Github password