温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

常用Git命令有哪些

发布时间:2021-06-25 11:43:46 来源:亿速云 阅读:109 作者:chen 栏目:大数据

本篇内容介绍了“常用Git命令有哪些”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

日常用够了,甚至有点多.

git remote add release http://{path}/{repository}.git

Git stash - hide some updates that don't want to commits

git stash

git checkout <new branch>

git checkout <original_branch>

git stash pop

How to get a remote branch?

git checkout feature/image-split

git pull origin feature/image-split

How to commit code: from local-dev-branch to target-branch

Step1 - commit to local-dev-branch

          Comments format: [CHIN-195] - XXX

Step2 - git checkout target-branch

          git pull

          git merge local-dev-branch

Step3 - git push origin feature/image-split

Don’t need to input username and password each time

git config credential.helper store

After changed the password. Like: fatal: Authentication failed for

git config --system --unset credential.helper

Then input your name and pwd

Git patch ?

git format-patch master --stdout > fix_empty_poster.patch

git patch

Git create a new branch and push it into remote

git checkout -b [name of new branch]

git push origin [name of new branch]

ex:  item-image

Git delete a branch

git branch -D the_local_branch

git push origin :the_local_branch

git push origin --delete <branch2> <branch3> <branch4>

Merge two branches

feature/image-split-new

goal: feature/item-image

1. Make sure the two branch is up-to-date,

2. at feature/item-image, run ‘git merge feature/image-split-new'

3. resovle confilicts if has

4. push origin feature/item-image 

Git commit skip file

http://stackoverflow.com/questions/7070659/git-exclude-ignore-files-from-commit

This will tell git you want to start ignoring the changes to the file

git update-index --assume-unchanged path/to/file

When you want to start keeping track again

git update-index --no-assume-unchanged path/to/file

Check out a remote branch in git

git fetch origin

git checkout groups

http://makandracards.com/makandra/521-check-out-a-remote-branch-in-git

Git Reset --hard

git reset --hard

Reset the staging area and the working directory to match the most recent commit. 

Git Update comment in commit

git rebase -i HEAD~3 

'edit' in vim

git commit —amend

git rebase —continue

Git merge --squash or use "Git compare branch in Intellij"

Banch: master

Your branch: branch_sample

Create a new branch from master: for_review

Then execute git merge branch_sample --squash

Git Prune origin

git remote prune origin

Git list remote branch

git ls-remote --heads origin

Git delete remote repository

git remote rm origin

Git ignore

git rm -r --cached {full file path}

git refusing to merge unrelated histories

git pull --allow-unrelated-histories

“常用Git命令有哪些”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注亿速云网站,小编将为大家输出更多高质量的实用文章!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

git
AI