惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 叶小钗
MyScale Blog
MyScale Blog
博客园 - 【当耐特】
I
InfoQ
腾讯CDC
aimingoo的专栏
aimingoo的专栏
L
LangChain Blog
人人都是产品经理
人人都是产品经理
D
DataBreaches.Net
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Engineering at Meta
Engineering at Meta
A
About on SuperTechFans
Google DeepMind News
Google DeepMind News
Vercel News
Vercel News
C
Check Point Blog
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
美团技术团队
Stack Overflow Blog
Stack Overflow Blog
Y
Y Combinator Blog
D
Docker
MongoDB | Blog
MongoDB | Blog
量子位
博客园_首页

jdhao's digital space

Conversion between base64 and OpenCV or PIL Image 腾讯云对象存储博客图床开启 CDN 加速(不需要购买额外域名) Search and Replace in Multiple Files in Vim/Neovim Change Table Column Width in LaTeX Image or Table Side by Side in LaTeX LaTeX 并排显示图像或表格 Firenvim: Neovim inside Your Browser Content inside HTML tags missing in Latest Hugo? Creating Markdown Front Matter with Ultisnips Labelme JSON 标注格式转 voc XML 格式 Nifty Nvim Techniques That Make My Life Easier -- Series 6 macOS 下如何为视频制作字幕 Running Command Asynchronously inside Neovim Resolving Merge Conflict after Git Stash Pop Pylint: command not found? A Hands-on Experience with Neovim's Built-in LSP Support How to Convert PDF to Images with Imagemagick 互联网上常用缩略语集锦 File Backup in Neovim Converting PDF Pages to Images with Poppler Nifty Nvim Techniques That Make My Life Easier -- Series 5 Neovim Configuration for System-wide Use How to sort a list of tuple or list in Python -- lambda or itemgetter? Building A Vim Statusline from Scratch 人类第一颗原子弹爆炸始末 Distributed Training in PyTorch with Horovod Learning Expect Programming Essential Knowledge about SSH Nifty LaTeX Techniques -- Series 1 更改 Adsense 邮寄地址,重新寄送 PIN
Selected Questions from LinkedIn Git Assessment
2022-01-14 · via jdhao's digital space

I took the LinkedIn Git assessment and got a certificate1, but found that I am not super clear on some of the questions. Here is an analysis of some of the questions and their answers.

different ways of git add and their meaning#

I have written about this in this post.

git reset: soft vs mixed vs hard#

When using git-reset, there three different types of reset, in term of disruptiveness:

  • --soft: moves HEAD to specified commit, and changes in the reset commits are squashed and kept in the staging area.
  • --mixed: moves HEAD to specified commit, changes in the reset commits as well as changes in staging areas are moved to working tree. This is the default reset behaviour.
  • --hard: moves HEAD to the specified commit, but all the changes (changes in the reset commit, in staging area , as well as changes in working tree) are discarded.

Ref:

What the following command do:#

git checkout master
git cherry-pick kj2342134

It pick the commit kj2342134 and apply it on master, i.e., it will try to patch master branch with commit kj2342134.

Note we are likely to meet merge conflict. We need to resolve the conflict and then git add conflict_file, then run git cherry-pick --continue.

Ref:

show changes in files via git diff-tree#

git diff-tree --no-commit-id --name-status -r <SHA>

The output may look like this:

D       autocommands.vim
A       core/autocommands.vim
A       core/mappings.vim
A       core/options.vim
A       core/plugins.vim
A       core/ui.vim
A       core/variables.vim
M       init.vim
D       mappings.vim
D       options.vim
D       plugins.vim
D       ui.vim
D       variables.vim

Ref

https://stackoverflow.com/a/24819616/6064933

what does git commit -a do?#

It will stage modified and deleted files (but not new files) to staging area and commit them to index. So it is equivalent to the following two commands:

Ref:

Status after modifying staged files#

Why do you see the following git status output?

On branch master
Changes to be committed:
  (use "git restore --staged <file>..." to unstage)
        modified:   test.txt

Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)
        modified:   test.txt

It means that after test.txt is added to staging area, and you have changed it.

what does the following command do:#

git fetch --all
git reset --hard origin/master

It will fetch the remote changes, then discard all local changes and move HEAD to remote master. This will effectively make your local master the same as your remote master.

Ref:

Does git push push all tags to remote by default?#

No, if you create a tag locally, they are not pushed to remote by default when you do git push. To push a certain tag to remote, use:

git push origin {some-tag}

To push all tags to remote:

Ref:

check the help for a git subcommand#

For example, we want to check doc for git reset, how do we do it on command line? There are two ways:

  • git help reset
  • man git-reset

How do we restore to original state if we meet a merge conflict and decided to discard the changes?#

Use git merge --abort .

Ref:

Show branches that has been merged by current branch?#

Use git branch --merged

Clean untracked file in a repo?#

We can use git clean -f (-f means with force) to clean untracked files in a git repo.

Note that this will not remove untracked directories by default. To also remove untracked directories (be careful if you really want to), add -d option: git clean -d -f.

To see the dry-run result (do not actually delete the files), use --dry-run or -n.

difference between git fetch and git pull#

You can think of git-pull as a two step operation: first we use git fetch, then we use git merge to merge the remote tracking branch.

Show what is in a git stash without applying it#

First, use git stash list to list a list of stashes. The output is like this:

stash@{0}: WIP on feat: c6c7af1 4 and 5
stash@{1}: WIP on feat: c6c7af1 4 and 5
stash@{2}: WIP on feat: c6c7af1 4 and 5

Then, to see the changes in first stash, use git stash show -p stash@{0}. We can think of stash as a stack, where top is your most recent stashed changes.