I have a repo wizard and I am doing file1.txt and file2.txt with files
git checkout -b fix1
Then I change file1.txt
and i do
git commit -a
then i do
git checkout master
then i do
git checkout -b fix2
Then I modify the file2.txt
and i do
git commit -a
then git checkout master
a
git merge fix1
git marge fix2
but if i do
commit -a
I get
# On branch master
nothing to commit (working directory clean)
source
share