創建一個空目錄,在其中初始化git git init 創建一個新文件,此時預設在master分支上 touch file1.txt add到staging area git add file1.txt 提交變化 git commit m 'the first commit' 創建一個新的分支 git ...
創建一個空目錄,在其中初始化git
git init
創建一個新文件,此時預設在master分支上
touch file1.txt
add到staging area
git add file1.txt
提交變化
git commit -m 'the first commit'
創建一個新的分支
git branch newBranch
切換到新的分支
git checkout newBranch
在新的分支newBranch下創建目錄和文件
mkdir folder
touch folder/file2.txt
在新的分支newBranch下add剛添加的目錄和文件
git add folder
提交變化
git commit -m 'second commit'
來到預設分支
git checkout master
此時,在newBrach分支上創建的folder目錄是不可見滴。