Debug School

rakesh kumar
rakesh kumar

Posted on

Git Troubleshooting Solution

git: "Updates were rejected because the tip of your current branch is behind.." but how to see differences?
Image description
Step 1:git pull origin master
step 2:wq:
step3:git pull origin master

if any untracked file that is not staged
step 1:git status
step 2: all red marked file are untracked then git add -A
step 3:git commit -m "Added all file"

Top comments (0)