Personal Page
git config --global user.name "your name"
git config --global user.email "you@example.com"
git config --get remote.origin.url
git config --list
https://blog.stackademic.com/git-rebase-explained-like-youre-new-to-git-263c19fa86ec
main branch and ‘origin/main’ have diverged, how to ‘undiverge’ branches’?
To update your branch my_branch with the latest changes from main (sometimes called master), you have two common options: merge or rebase.
# Make sure you are on your branch
git checkout my_branch
# Get the latest changes from the remote
git fetch origin
# Merge main into your branch
git merge origin/main
Pros: Keeps full history, easy to resolve conflicts.
Cons: Creates a merge commit, history may look more cluttered.
# Make sure you are on your branch
git checkout my_branch
# Get the latest changes from the remote
git fetch origin
# Rebase your work on top of the latest main
git rebase origin/main
Pros: Cleaner history.
Cons: Can be trickier if conflicts occur.
If your branch is already pushed and shared with others,
you’ll need to git push –force-with-lease after rebasing.
git diff <commit-id> <commit-id>
Compare current branch with local master:
git diff master..
Specific file:
git diff master... filepath
Compare with remote master:
git diff origin/master...
git diff --cached
git diff --cached src/main/scala/agt/Main.scala
git diff master...branch
git diff origin/master...
This shows only the changes between my currently selected local branch and the remote master branch, and ignores all changes in my local branch that came from merge commits.
git diff master...
This uses your local copy of master.
To compare a specific file use:
git diff master... filepath
https://habr.com/ru/articles/928532/
https://news.ycombinator.com/item?id=42728916
https://habr.com/ru/articles/813399/ How to make useful github front page
ohshitgit.com
https://news.ycombinator.com/item?id=42728916 OH SHIEET GIT
https://habr.com/ru/articles/813513/ Git notes
https://habr.com/ru/articles/807501/ init
https://blog.gitbutler.com/git-tips-and-tricks/
https://jvns.ca/blog/2024/02/01/dealing-with-diverged-git-branches/
https://jvns.ca/blog/2024/02/16/popular-git-config-options/
https://adrg.se/blog/dotfiles-digest-git
https://lobste.rs/s/spjgop/popular_git_config_options
https://bernsteinbear.com/git/
https://news.ycombinator.com/item?id=39400352
https://news.ycombinator.com/item?id=39356042
https://blog.gitbutler.com/git-tips-and-tricks/
alias gfp=”git commit –amend –no-edit && git push –force-with-lease”
https://habr.com/ru/articles/796119/ Популярные конфигурационные опции для работы с git
cd ..
cp work-repo/code.py /tmp/
rm -rf work-repo && git clone github.com/.../work-repo.git
cp /tmp/code.py work-repo/
cd work-repo && git checkout my_branch && git add -u && git commit
git clone --depth 1 --branch v3.12.0 https://github.com/python/cpython.git
git clone --depth 1 --branch v3.12.0 git@github.com:python/cpython.git
https://github.com/Bhupesh-V/ugit/blob/master/ugit undo git
https://learngitbranching.js.org/
https://habr.com/ru/articles/799413/
git switch other-branch
git switch - # back to previous branch, like "cd -"
git switch remote-branch # Непосредственное переключение на удалённую ветвь и её отслеживание
https://ohshitgit.com/
https://jacobpadilla.com/articles/Time-Travel-With-Git
https://www.kdnuggets.com/10-advanced-git-techniques
difference between commit and merge
https://blog.stackademic.com/whats-the-difference-between-git-rebase-and-git-merge-cdf656b5310e
https://medium.com/@tigerasks/git-gud-b29c11ab2c60
https://medium.com/@tigerasks/rebase-once-1642b7dc0563
git fetch lets our local repository know about the state of origin, our remote. We fetch remote changes into our local git repository.
git pull runs git fetch, then if the current branch is behind the remote, it will by default fast-forward the current branch to match the remote.
If fast-forward is impossible, it will run git merge or git rebase, depending on your configuration.
https://www.youtube.com/watch?v=hZS96dwKvt0
https://www.youtube.com/watch?v=1ffBJ4sVUb4
https://www.leemeichin.com/posts/conditional-git-config.html
https://news.ycombinator.com/item?id=38942892
https://stevenharman.net/configure-ssh-keys-for-multiple-github-accounts
https://news.ycombinator.com/item?id=36768334
Git-хуки — скрипты, которые автоматически запускаются при наступлении определённых событий в жизненном цикле репозитория,
таких как commit, push, merge, rebase и другие операции.
С их помощью можно автоматизировать различные аспекты рабочего процесса и выполнять необходимые проверки и действия на каждом этапе разработки.
https://www.elliotjordan.com/posts/pre-commit-01-intro/
https://pre-commit.com/
https://stefaniemolin.com/articles/devx/pre-commit/hook-creation-guide/
https://builtwithdjango.com/blog/improve-your-code-with-pre-commit
Create file in the root of your repo: .pre-commit-config.yaml
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
https://jwiegley.github.io/git-from-the-bottom-up/
https://github.com/extrawurst/gitui
brew install tig
brew install lazygit
brew install gitui
If you have modified some files in a Git repository and did a git add on them, but haven’t yet done a git commit on them, you can view those changes with this command:
git diff –cached
git diff –cached src/main/scala/agt/Main.scala
git log -p – filename
git log -p –follow –
git log -p filename
git log –after=2022-05-20 –before=2022-06-10 –pretty=format:”%h %an %ad” –date=short
git log –after=”2014-7-1”
git log –after=”2014-7-1” –before=”2014-7-4”
git log –since=2022-08-08 –raw
git log –author=mlubinsky –raw
git log –since=2022-08-08 –patch
git fetch --all
git reset --hard origin/master
git checkout master
git pull
git checkout de-gcp-migration
Fixing problem:
git pull origin master
Error: You have divergent branches and need to specify how to reconcile them.
git pull --ff-only origin master
Error: fatal: Not possible to fast-forward, aborting.
git pull --rebase origin master
git add <file>
You are currently rebasing branch 'advanced_reviews_rms_model_update' on '1401809'.
(all conflicts fixed: run "git rebase --continue")
Changes to be committed:
modified: dags/dag_dm_mkt_derivatives/dag_advanced_review.py
new file: dags/dag_dm_mkt_derivatives/dag_new_advanced_review.py:wq
git checkout — $FILE and
git restore $FILE
https://stackoverflow.com/questions/1783405/how-do-i-check-out-a-remote-git-branch
git fetch
git switch mps_total_revenue
git pull origin master
https://www.biteinteractive.com/picturing-git-conceptions-and-misconceptions/
https://stackoverflow.com/questions/9210446/how-to-replace-local-branch-with-remote-branch-entirely-in-git
https://news.ycombinator.com/item?id=28392566
word diff:
git diff –word-diff
https://blog.ipspace.net/2020/04/git-tip-word-diff.html
cat ~/.gitconfig
In .gitconfig:
[alias]
wdiff = diff –word-diff –word-diff-regex=’\w+’
https://ghapi.fast.ai/tutorial_actions.html Git Actions
Git-хуки — скрипты, которые автоматически запускаются при наступлении определённых событий в жизненном цикле репозитория,
таких как commit, push, merge, rebase и другие операции.
С их помощью можно автоматизировать различные аспекты рабочего процесса и выполнять необходимые проверки и действия на каждом этапе разработки.
https://iafisher.com/blog/2020/06/precommit
https://habr.com/ru/companies/2gis/articles/838966/
https://blog.isquaredsoftware.com/2021/01/coding-career-git-usage/
https://habr.com/ru/company/skillbox/blog/534972/ Undo
https://rtyley.github.io/bfg-repo-cleaner/ clean the git
https://medium.com/better-programming/git-commands-to-live-by-349ab1fe3139
https://news.ycombinator.com/item?id=24957280 Visualizing Git Concepts with D3
https://gitbetter.substack.com/p/how-to-use-git-fetch-and-git-pull
https://habr.com/ru/company/manychat/blog/511946/
https://gitup.co/
https://git-fork.com/ Fork: UI for Git
https://www.sublimemerge.com/ Git UI Client, from the makers of Sublime Text
https://www.sublimemerge.com/ Git Client, from the makers of Sublime Text http://vimcasts.org/episodes/fugitive-vim-resolving-merge-conflicts-with-vimdiff/
https://www.kaleidoscopeapp.com/ Kaleidoscope is the file comparison app. Compare different text files, images, and folders on your Mac and iPad. Review and merge changes in a matter of seconds (merging available only on the Mac).
https://gitbetter.substack.com/p/how-to-squash-git-commits
https://www.compscilauren.com/blog/improve-your-git-workflow-and-save-time-with-git-hooks
https://codersbible.com/5-git-commands-to-know-just-after-you-get-the-basics/
https://learngitbranching.js.org/?a=b
https://blog.jakuba.net/git-command-overview-with-useful-flags-and-aliases/
https://insights.dice.com/2020/05/04/git-mastering-basics-branch-merging/
https://rogerdudler.github.io/git-guide/
https://learngitbranching.js.org/
http://sethrobertson.github.io/GitPostProduction/gpp.html
https://docs.gitlab.com/ee/user/group/saml_sso/#message-saml-authentication-failed-extern-uid-has-already-been-taken
https://serokell.io/blog/comparison-of-github-and-gitlab github vs gitlab
https://www.infoq.com/presentations/history-comments-git/
github from python
#! /usr/bin/python3
import sys
import os
import time
from github import Github
project_name = sys.argv[1]
path = '/Users/<your_github_nama>/GIT/'+project_name
print(path)
try:
os.mkdir(path)
print("Created Path")
except FileExistsError:
print("Path Exists")
fileloc = path+'/README.md'
file = open(fileloc, 'w+')
file.write('Project: '+project_name+'\n')
file.close()
# You can get your GitHub access token from Github settings https://github.com/settings/tokens
# and replace it in the script where there is XXX
g = Github("XXX")
user = g.get_user()
repo = user.create_repo(project_name)
https://youtu.be/ye4LVrQ0TuM How to work with Git Flow feature branches in the terminal
https://habr.com/ru/post/472600/
https://github.com/jesseduffield/lazygit/
https://www.youtube.com/watch?v=6LhTe8Mz6jM Git flow
Overwrite single file in my current branch with the same file in the master branch?
git checkout master file_to_replace
git config –get remote.origin.url
get remote branch
git fetch
git checkout branch_name_here
if above does not work then try:
git checkout -b PROGDE-1891 origin/PROGDE-1891
git fetch
https://gist.github.com/Chaser324/ce0505fbed06b947d962
https://www.youtube.com/watch?v=UWwazJ_46s0 git rebase
https://www.atlassian.com/git/tutorials/merging-vs-rebasing
https://www.daolf.com/posts/git-series-part-3/
https://medium.com/@nbelakovski/level-up-git-rebasing-and-squashing-6bff432d796e
Another way to think about rebasing is that when you’ve rebased a branch, it’s as if you had just now created your branch off of this latest master and done all of your work on top of it
to squash all the garbage away before making a PR:
git rebase -i ${commit_before_i_started_doing_questionable_stuff}
https://news.ycombinator.com/item?id=21189256
https://dev.to/alediaferia/git-tips-for-trunk-based-development-1i1g
https://stackoverflow.com/questions/9725531/show-commits-since-branch-creation
git log master...<your_branch_name>
git log master...
show commits since branch creation
creating a branch a couple of commits behind master:
git checkout --branch mytestbranch master~2
git log --oneline -2
git rebase master
This work:
git checkout master
git pull origin master
git checkout branch_i_want_to_rebase
git rebase master
But this work as well: it’s quicker and means I don’t have to switch branches
git fetch origin master
git rebase origin/master
git add/rm/commit/status/push
git branch/checkout/merge/rebase
git tag/push --tag
git add -i
This wokrs as well and it is shorter:
git pull --rebase origin master
git pull -r origin master
or
git pull --rebase=interactive
https://stackoverflow.com/questions/5189560/squash-my-last-x-commits-together-using-git
squashing is the practice of combining multiple commits into a single commit, or at least fewer commits than you started with. It is accomplished with an interactive rebase onto your own or another branch, or via git commit –amend. It can be performed simultaneously with a rebase operation. you’re taking two or more commits and combining them into a single commit.
git rebase --interactive HEAD~2
Instead of making all your various commits and then squashing later on via an interactive rebase, you can use the
--amend
option of git commit to edit the commit you’re currently on. So in the example above, after I made my commit to “Add build instructions to README”, I could amend that commit to include my typo fix by making the fix, staging it like I would if I was about to create a commit, and then running git commit --amend
.
Set merge.conflictstyle=diff3
The default merge style is utterly useless, I have no idea why it is the default. diff3 gives you three pieces of information: the status before at the common ancestor; the status on the current branch; and the status on the to-be-merged branch. You can then understand what changes were made on each branch, and decide how to merge them intelligently. Without that common ancestor, it’s way way harder to understand what you’re looking at.
When I want to get back to a pristine state, I prefer
git reset --hard origin/master
over the suggested
git reset --hard HEAD
If you use git and don’t know the difference, read this: https://stackoverflow.com/questions/8196544/what-are-the-git-concepts-of-head-master-origin
In the event that the commit HEAD refers to is not the tip of any branch, this is called a “detached head”.
master: the name of the default branch that git creates for you when first creating a repo. In most cases, “master” means “the main branch”. Most shops have everyone pushing to master, and master is considered the definitive view of the repo. But it’s also common for release branches to be made off of master for releasing. Your local repo has its own master branch, that almost always follows the master of a remote repo.
origin: the default name that git gives to your main remote repo. Your box has its own repo, and you most likely push out to some remote repo that you and all your coworkers push to. That remote repo is almost always called origin, but it doesn’t have to be.
HEAD is an official notion in git. HEAD always has a well-defined meaning. master and origin are common names usually used in git, but they don’t have to be.
Always pull w/ rebase for the current branch.
Always merge other branches into your current branch, eg master -> feature.
Always stage individual chunks of code one at a time to make sure I’m committing the right stuff.
Always squash feature branches into a single commit when merging back.
Stash changes if needed when switching branches.
Cherry-pick one-off commits if needed.
Append a previous commit that I haven’t pushed yet if I happened to forget something.
For complicated merge conflicts I switch to Visual Studio Code which also has a great GUI.
I constantly use
git commit --fixup 6138D3A
git rebase --autosquash --interactive origin/master
to keep a clean history of cohesive commits.
Rarely do I change everything required for an objective in one go,
I still like to commit as I work,
I just like the finished product to seem like I did it in one go, for future maintainers’ sake.
And I rebase to catch up with upstream, I can’t stand having intermediate merge commits in my history and rebasing lets you resolve conflicts as they’re introduced,
instead of an all-at-once at the end.
When I merge my feature back to origin/master I do
git merge --squash myFeatureBranch
which automatically rebases everything and keeps a clean history.
If I’m working on a feature that I haven’t pushed up yet I might squash my commits together for a cleaner history (it also helps with rebasing).
If you ever mess up a rebase and finish it before you’re able to abort you can use git reflog
to get a reference back to the previous commit. It’s come super handy a few times.
Whether you’re trying to give back to the open source community or collaborating on your own projects, knowing how to properly fork and generate pull requests is essential. Unfortunately, it’s quite easy to make mistakes or not know what you should do when you’re initially learning the process. I know that I certainly had considerable initial trouble with it, and I found a lot of the information on GitHub and around the internet to be rather piecemeal and incomplete - part of the process described here, another there, common hangups in a different place, and so on.
In an attempt to coallate this information for myself and others, this short tutorial is what I’ve found to be fairly standard procedure for creating a fork, doing your work, issuing a pull request, and merging that pull request back into the original project.
Just head over to the GitHub page and click the “Fork” button. It’s just that simple. Once you’ve done that, you can use your favorite git client to clone your repo or just head straight to the command line:
# Clone your fork to your local machine
git clone git@github.com:USERNAME/FORKED-PROJECT.git
Make sure you keep your fork up to date by tracking the original “upstream” repo that you forked.
To do this, you’ll need to add a remote:
# Add 'upstream' repo to list of remotes
git remote add upstream https://github.com/UPSTREAM-USER/ORIGINAL-PROJECT.git
# Verify the new remote named 'upstream'
git remote -v
Whenever you want to update your fork with the latest upstream changes,
you’ll need to first fetch the upstream repo’s branches and latest commits
to bring them into your repository:
# Fetch from upstream remote
git fetch upstream
# View all branches, including those from upstream
git branch -va
Now, checkout your own master branch and merge the upstream repo’s master branch:
# Checkout your master branch and merge upstream
git checkout master
git merge upstream/master
If there are no unique commits on the local master branch, git will simply perform a fast-forward.
However, if you have been making changes on master
(in the vast majority of cases you probably shouldn’t be, you may have to deal with conflicts.
When doing so, be careful to respect the changes made upstream.
Now, your local master branch is up-to-date with everything modified upstream.
Whenever you begin work on a new feature or bugfix, it’s important that you create a new branch. Not only is it proper git workflow, but it also keeps your changes organized and separated from the master branch so that you can easily submit and manage multiple pull requests for every task you complete.
To create a new branch and start working on it:
# Checkout the master branch - you want your new branch to come from master
git checkout master
# Create a new branch named newfeature (give your branch its own simple informative name)
git branch newfeature
# Switch to your new branch
git checkout newfeature
Now, go to town hacking away and making whatever changes you want to.
Prior to submitting your pull request, you might want to do a few things to clean up your branch and make it as simple as possible for the original repo’s maintainer to test, accept, and merge your work.
If any commits have been made to the upstream master branch, you should rebase your development branch so that merging it will be a simple fast-forward that won’t require any conflict resolution work.
# Fetch upstream master and merge with your repo's master branch
git fetch upstream
git checkout master
git merge upstream/master
# If there were any new commits, rebase your development branch
git checkout newfeature
git rebase master
Now, it may be desirable to squash some of your smaller commits down into a small number of larger more cohesive commits. You can do this with an interactive rebase:
# Rebase all commits on your development branch
git checkout
git rebase -i master
This will open up a text editor where you can specify which commits to squash.
Once you’ve committed and pushed all of your changes to GitHub, go to the page for your fork on GitHub, select your development branch, and click the pull request button. If you need to make any adjustments to your pull request, just push the updates to GitHub. Your pull request will automatically track the changes on your development branch and update.
Take note that unlike the previous sections which were written from the perspective of someone that created a fork and generated a pull request, this section is written from the perspective of the original repository owner who is handling an incoming pull request. Thus, where the “forker” was referring to the original repository as upstream
, we’re now looking at it as the owner of that original repository and the standard origin
remote.
Open up the .git/config
file and add a new line under [remote "origin"]
:
fetch = +refs/pull/*/head:refs/pull/origin/*
Now you can fetch and checkout any pull request so that you can test them:
# Fetch all pull request branches
git fetch origin
# Checkout out a given pull request branch based on its number
git checkout -b 999 pull/origin/999
Keep in mind that these branches will be read only and you won’t be able to push any changes.
In cases where the merge would be a simple fast-forward, you can automatically do the merge by just clicking the button on the pull request page on GitHub.
To do the merge manually, you’ll need to checkout the target branch in the source repo, pull directly from the fork, and then merge and push.
# Checkout the branch you're merging to in the target repo
git checkout master
# Pull the development branch from the fork repo where the pull request development was done.
git pull https://github.com/forkuser/forkedrepo.git newfeature
# Merge the development branch
git merge newfeature
# Push master with the new feature merged into it
git push origin master
Now that you’re done with the development branch, you’re free to delete it.
git branch -d newfeature