Fehler: SRC RefSpec -Master stimmt nicht übereinstimmen
git commit -m "initial commit"
git push origin master
Confused Chinchilla
git commit -m "initial commit"
git push origin master
git show-ref
mkdir repo && cd repo
git remote add origin /path/to/origin.git
git add .
/*Make sure you commit before push to github*/
git commit -m "initial commit"
git push origin master
You probably forgot to add your your changes to staging area.
So type :
git add .
then :
git commit -m "meesage"
finally :
git push origin branch_name
mkdir repo && cd repo
git remote add origin /path/to/origin.git
git add .
git commit -m "initial commit"
git push origin master
Check master vs main