I wonder what is the best way to perform a commit when there are many changes in the repository
I always work with svn from the ide. I am learning to use git from console and I would like to do the following before a commit:
- see all files that are modified on the server
- I want to manually merge the files I want
- upload the changes to the repository.
I have been researching and found the following commands:
for commit my changes:
git add -A
git commit -m "..."
to download changes:
git fetch
I need see the files that have changed, and then merge them manually
I know there
git rebase
but this is like a pull, I want something less invasive.
Sorry for my English