git在分支上建立目錄和檔案

2021-09-09 04:36:21 字數 880 閱讀 5554

建立乙個空目錄,在其中初始化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目錄是不可見滴。

git在分支上建立目錄和檔案

建立乙個空目錄,在其中初始化git git init 建立乙個新檔案,此時預設在master分支上 touch file1.txt add到staging area git add file1.txt 提交變化 git commit m the first commit 建立乙個新的分支 git b...

建立目錄和檔案

1 在 opt下遞迴建立a b c 2 在 opt a b c建立乙個空檔案tarena.txt 3 為檔案 etc sysconfig network scripts ifcfg eth0 建乙個快捷方式存放到 etc ifcfg eth0 4 同時建立 nsd root zhangsan 當前路...

建立目錄和檔案(linux)

使用mkdir命令建立目錄結構 notes cloud 使用touch命令在 notes cloud 目錄下建立空檔案readme day01.txt day02.txt hcip.mp4 列出 notes cloud 目錄下所有以 txt 結尾的檔案 3.2 步驟 實現此案例需要按照如下步驟進行。...