Regenerate a git repository -
Is there an order that automatically reboots a GIT repository?
and update the files that are manually created or updated in my file system (such as adding git.), But also that I manually deleted from the repository from the app in my file system Automatically delete files (such as git add_or_delete.)
I am taking a test to try a new GIT init, but I have not noticed this yet, if this is an unexpected side effect.
For troubleshooting purposes, I need not only to command my file system to scan, but to actually make the repository again from the version of the app in my file system. Order for
If I distinguish your question correctly:
git commit -a Only all will replace the changed and deleted files, you will have to specify git add for new files.
Like this:
git add git commit -m "new structure" -a
moves.
Comments
Post a Comment