0
You have changes you haven’t done Stage yet, so you can’t commit
- First of a
git add . - Then you commit normally and give a
git pull - then you can give a
git pushnormally
I believe this will solve your problem.
0
1
You have changes you haven’t done Stage yet, so you can’t commit
git add .git pullgit push normallyI believe this will solve your problem.
0
You first have to add the files you want to add to the repository with your commit, after you write the commit and git push.
You can give a git status to view the files that have been modified;
Then you can use git add [filename] to add unique files, or git add --all . to add all the files that have been modified;
Now you write the commit using git commit -m "seu commit";
Now just use it git push or git push <link do seu repositório>.
Browser other questions tagged git github
You are not signed in. Login or sign up in order to post.