Git 基本操作

2022-07-27 21:12:14 字數 1208 閱讀 1069

/******拉********/

repo init -u ssh://git/manifest -b bsp -m ursa-o.xml --repo-url=  /tools/repo.git --depth=5  //拉完**無法檢視全部git log記錄 ,只能看到最近5條修改,能夠節省**空間

repo sync --no-tags

/******同步********/

repo sync -f --force-sync --prune -c -d --no-tags -j4 .

/******檢視所有庫本地修改******/

repo forall -c 'git status'

/******清除生成物******/

repo forall -c 'git clean -df'

/******fastboot******/

/******git  upload上傳********/

repo start my

git add .

git commit

repo upload --cbr .

/******git  push上傳********/

git remote -v

git push /manifest.git head:refs/for/dev

/******git 打包patch******/

git farmat - patch

//分支和主分支同步的方法

git fetch --all

git merge miui/dev

//檢視資訊

git log   檢視提交commit資訊

git status    檢視修改狀態

git diff   檢視工作區快取區差異檔案

git show  檢視最近一條完成修改

gitk   圖形化顯示差異

//跟新**指令碼

#!/bin/bash

repo forall -pvc git checkout | tee

repo forall -pvc git reset --hard head | tee

repo forall -pvc git clean -dfx | tee

repo sync -c -d --no-tags

變基,修改change-id

git rebase -i head~2

Git基本操作

1.初始化倉庫 git init 2.配置作者資訊 git config global user.email youremail corp.com git config global user.name yourname 3.新增檔案到暫存區 git add git add 新增所有檔案到暫存區 4...

git基本操作

1.先建乙個資料夾 mikdir gittest 這時就會有乙個gittest資料夾,cd gittest 進入這個資料夾 ls一下,就會看到gittest下沒有東西 2.生成乙個git git init cat git 顯示一下所有git 3.建乙個檔案 touch readme.md 這時git...

Git基本操作

21 nov,錦州 同生活中的許多偉大事件一樣,git 誕生於乙個極富紛爭大舉創新的年代。linux 核心開源專案有著為數眾廣的參與者。絕大多數的 linux 核心維護工作都花在了提交補丁和儲存歸檔的繁瑣事務上 1991 2002年間 到 2002 年,整個專案組開始啟用分布式版本控制系統 bitk...