Я действительно новичок в git, и я пытался понять, почему git продолжает показывать, что я изменил в одной ветке в другой ветке, когда я запускаю git checkout для переключения между ветвями. Сначала я попытался не с помощью git добавить и не работать. Тем не менее, я попытался использовать git add, но не исправил проблему. Я еще не использовал git commit.
Это в основном то, что я делаю:
$ git clone <a_repository>
$ git branch
* master
$ git branch testing
$ git checkout testing
...edit a file, add a new one, delete...
$ git status
# On branch testing
# Changed but not updated:
# (use "git add/rm <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# deleted: file1.txt
#
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# file2.txt
no changes added to commit (use "git add" and/or "git commit -a")
$ git branch
master
* testing
$ git checkout master
D file1.txt
Switched to branch 'master'
$ git status
# On branch master
# Changed but not updated:
# (use "git add/rm <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# deleted: file1.txt
#
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# file2.txt
no changes added to commit (use "git add" and/or "git commit -a")
Я думал, что, используя ветки, независимо от того, что вы делаете в одной ветке, он невидим для всех других ветвей. Разве это не причина создания ветвей?
Я попытался использовать "git add", но изменения видны в обеих ветвях. Нужно ли запускать "git commit" перед переключением между ветвями, чтобы избежать этого?