Git命令練習

2022-09-09 11:33:15 字數 800 閱讀 3763

git是一款分布式的版本控制工系統。區別於svn,svn不是分布式的。現在大多數情況下都在使用git,少數老系統還在使用svn

不推薦使用圖形化介面操作git,推薦使用git命令來操作。這樣才能記住具體的操作,也顯得更厲害些。

git config --global user.name "[name]"  //全域性設定git使用者名稱

git config --global user.email "[email address]"  //全域性設定git郵箱

git init [project-name]  //初始化乙個倉庫

git clone [url]  //轉殖乙個專案

git status  //檢視提交資訊

git diff  //顯示區別

git add [file]  //新增到暫存區

git reset [file]  //回滾檔案

git commit -m "[descriptive message]"  //提交檔案並新增提交資訊

git branch  //檢視分支

git branch [branch-name]  //新建分支

git checkout [branch-name]  //切換分支

git merge [branch]  //合併分支

git branch -d [branch-name]  //刪除分支

git log  //檢視提交的日誌資訊

git push origin master //推送到遠端倉庫

git remote add origin //新增新的遠端倉庫

git 命令 git命令入門

1.本地使用 首次使用,需要進行全域性配置 git config global user.name 使用者名稱 git config global user.email 郵箱位址 git常用命令 git倉庫初始化 git init 新增到快取區 git add 檔名 新增當前目錄到快取區 git a...

linux命令練習

重啟linux系統 rboot刪除游標前後的內容 前ctrl u後ctrl k刪除 tmp下所有a開頭的檔案 rm f tmp a 把 etc passwd檔案備份到 tmp檔案下 cp etc passwd tmp passwd檢視系統中最後建立的三個使用者 tail 3 etc passwd統計...

date命令練習

1 顯示當前時間,格式 2020 11 11 11 11 11 2 顯示前天星期幾 3 設定當前日期為 2019 06 18 10 20 30 設定時間 date s 設定當前時間,只有root許可權才能設定,其他只能檢視 date s 20190523 設定成20190523,這樣會把具體時間設定...