九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開APP
userphoto
未登錄

開通VIP,暢享免費(fèi)電子書等14項(xiàng)超值服

開通VIP
使用android系統(tǒng)的git-repo工具

 

出處:http://blog.chinaunix.net/u1/38994/showart_2329621.html

一.創(chuàng)建跟蹤分支
創(chuàng)建跟蹤分支,可以使用如下3種方式
1.使用repo start
2.使用git branch --track origin/master pool
3.使用git checkout -b pool origin/master
4.批量創(chuàng)建repo forall -c 'repo start pool .'
(可以使用repo abandon pool刪除分支)

二.創(chuàng)建完跟蹤分支之后,就可以直接同步merge遠(yuǎn)程代碼到上面建立的比如pool跟蹤分支了
repo sync

三.使用如下腳本gd或gd2查看自己本地所有修改了的但還未push回reporsitory的內(nèi)容
---lgit_diff腳本-------------
#!/bin/bash
path=$1

if [ $path ] && [ -d $path ] ; then
    cd $path
    [ $2 ] && name_only="--name-only"
else
    [ $path ] && name_only="--name-only" && path=''
fi

remote=`git remote`
remote_name=`git branch -r | sed '/->/!d;s!.*/!!'`
diffs=`git diff $remote/$remote_name --name-only`

if [ "$diffs" ]; then
    echo "=========================================="
    [ $path ] && echo $path
    [ "$name_only" = "" ] && echo
#   repo sync .
    git diff $remote/$remote_name $name_only
fi

[ $path ] && cd - > /dev/null

---gd腳本-------------
#!/bin/bash
# repo sync
repo forall -c 'pwd' | xargs -l1 -I file lgit_diff file $1

---gd2腳本-------------
#!/bin/bash
repo sync
repo forall -c 'pwd' | xargs -l1 -I file lgit_diff file $1

四.進(jìn)入相應(yīng)修改目錄,直接git reset去掉無用的log
git reset hashid
git commit -am '寫一些此次提交綜合的說明文字'

五.使用如下腳本進(jìn)行check in或者
使用repo forall -c 'pwd' | xargs -l1 Sync2GitServerReporsitory統(tǒng)一提交多個(gè)變更的git庫
---Sync2GitServerReporsitory腳本-------------
#!/bin/bash
path=$1
[ $path ] && cd $path

remote=`git remote`
remote_name=`git branch -r | sed '/->/!d;s!.*/!!'`
local_name=`git branch | sed '/\*/!d;s/\*\ //'`

# We must Create a tracking branch, could use the following 3 ways
# 1. repo start $remote_name .
# 2. git branch --track origin/master pool
# 3. git checkout -b pool origin/master
# 4. 或者repo forall -c 'repo start pool .'批量創(chuàng)建

git pull $remote $remote_name
git push $remote $local_name:$remote_name

[ $path ] && cd - > /dev/null
本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點(diǎn)擊舉報(bào)
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
Repo命令指南(翻譯自官方文檔)-轉(zhuǎn)
Repo 詳解
建本地 repo server --- 超復(fù)雜型 -- 備份
git repo
創(chuàng)建android下repo的mirror鏡像然后內(nèi)網(wǎng)訪問
Repo和Git 版本管理常用命令
更多類似文章 >>
生活服務(wù)
熱點(diǎn)新聞
分享 收藏 導(dǎo)長圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服