When I go to back up work in SourceTree, I keep getting 'Nothing to commit', and thus can not back up my work. I have backed up this project before, so at point it could see changes as expected. I don't believe anything is different now.
EDIT: For clarity, I Know that I have made changes.
Hi @EngiJbell,
Welcome to Atlassian Community.
Have you made any changes to your repository? If you get "Nothing to commit" it is an indication that you have not made any changes to the repository since the last time you made a commit.
Are you using gitignore?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes. However, I am certain I have made lots of changes outside of the .gitignore scope.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Git should report any changes you made if you run git status. If it does not show any changes, it will not push anything to the remote repository. You can test that by just adding a new file to the repository and then run git status
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Okay, so if Git is not detecting any changes it sounds like something is up with your repository. Do you see the .git directory on the root level of your repository? Are you making changes in a directory that is being ignored by your gitignore file?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.