# 退到/进到 指定commit的sha码git reset --hard <commit-id> # 强推到远程git push origin HEAD --force
git branch --unset-upstream
# 清楚tracked缓存git rm -r --cached .# 重新添加文件git add .
#!/bin/bashdir_path=`pwd`filelist=`ls $dir_path`for file in $filelistdo # 检查目录和git目录是否存在 if [[ -d $file ]] && [[ -d $dir_path/$file/.git ]]; then branch=`cat $dir_path/$file/.git/HEAD` # 分支名 sub_branch=${branch: 16} # 打印 echo "$sub_branch $file" fidone
#!/bin/bashdir_path=`pwd`filelist=`ls $dir_path`for file in $filelistdo # 检查目录和git目录是否存在 if [[ -d $file ]] && [[ -d $dir_path/$file/.git ]]; then # 每行要加分号 ";" ,一开始没有加分号,就报错 cd $dir_path/$file; git checkout -b 你的分支名; cd $dir_path; fidone
#!/bin/bash# 拉取最新代码到本地仓库echo "=========>>>拉取最新代码到本地仓库,开始fetch操作"git fetchecho "=========>>>fetch 成功" # 检查本地分支是否落后于远程分支,如果是,则先合并远程分支if [ -n "$(git status -uno | grep 'Your branch is behind')" ]; then echo "=========>>>本地分支落后于远程分支,先合并远程分支" git pull echo "=========>>>合并远程分支完成"fi # 获取当前分支branch=$(git rev-parse --abbrev-ref HEAD) # 检查是否存在未推送的本地 commit,如果有则先执行推送操作if [ -n "$(git log origin/${branch}..HEAD --oneline)" ]; then echo "=========>>>存在未推送的本地 commit,先执行推送操作" git push echo "=========>>>push 完成"fi # 检查是否存在未提交的修改if [ -z "$(git status --porcelain)" ]; then echo "=========>>>当前仓库没有未提交的修改,很干净" exit 1fi timeValue=0 # 获取提交注释if [ -z "$1" ] then echo "=========>>>请在 $timeValue s内输入提交注释,否则使用默认提交信息进行提交 | 快捷操作:直接回车:" read -t $timeValue message # echo "=========>>>请在输入提交注释 | 如需默认提交信息,请按回车键 " # read message if [ -z "$message" ] then # echo "必须输入提交注释!!!!!!!!!!!!" # exit 1 timestamp=$(date +%s) message="moatkon.com commit $timestamp" fi else message="$1"fi # 添加所有修改到 Gitgit add . # 提交修改git commit -m "$message" --no-verify # 输出提交信息echo "=========>>>提交注释: $message" # 推送代码到远程 Git 仓库git push # 输出推送信息echo "=========>>>已将代码推送到远程仓库"
git statusgit add .git commit -m "Your commit message"
git checkout main
git pull origin main
git merge <当前分支的名称>
从远程分支就是 git merge origin <当前分支的名称>
git push origin main
git diff
如果要查看特定的commit id的变动,则使用
git show <commit-id>
git branch <branch-name> # 创建分支 git branch -b <branch-name> # 创建分支并切换到新分支 git checkout -b <new-branch-name> origin/<remote-branch-name> # 从远处分支创建分支并切换 git fetch origin # 拉远处分支到本地,这样在本地就可以看到git fetch # 我一般用这个 # 删除分支,删除分支前要先切换到其他分支,不然删除不了git branch -d <branch-name> # 安全删除git branch -D <branch-name> # 强制删除 git push origin HEAD # 在远程创建一个新分支,很你的本地分支一样
git config --global http.https://github.com.proxy socks5://127.0.0.1:33211
网站当前构建日期: 2024.11.18