# curl https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash -o ~/.git-completion.bash
# .bashrc
if [ -f ~/.git-completion.bash ]; then
. ~/.git-completion.bash
fi
export GIT_TRACE=1
export GIT_TRACE=1
export GIT_CURL_VERBOSE=1
git clean --dry-run
git clean -f -q
# remove all remote non-used branches
git remote prune origin
git reset --hard
git reset --hard origin/master
git reset --soft origin/master
# find full path to the file
file_name="integration_test.sh.j2"
git log --diff-filter=D --name-only | grep $file_name
# find last log messages
full_path="ansible/roles/data-ingestion/templates/integration_test.sh.j2"
git log -2 --name-only -- $full_path
second_log_commit="99994ccef3dbb86c713a44815ab5ffa"
# restore file from specific commit
git checkout $second_log_commit -- $full_path
# show removed file
git show $second_log_commit:$full_path
git reset --hard HEAD~1
git checkout -t origin/develop
git remote prone origin
git branch -d release-6.9.0
git branch --delete release-6.9.0
# delete with force - for non-merged branches
git branch -D origin/release/2018.05.00.12-test
# the same as
git branch -d -f release-6.9.0
git branch --delete --force origin/release/2018.05.00.12-test
git push origin --delete release/2018.05.00.12-test
git gc --prune=now
git fetch --prune
git branch --merged | egrep -v "(^\*|master|in-progress)" | xargs git branch -d
commit1=10141d299ac14cdadaca4dd586195309020
commit2=b6f2f57a82810948eeb4b7e7676e031a634 # should be removed and not important
commit3=be82bf6ad93c8154b68fe2199bc3e52dd69
current_branch=my_branch
current_branch_ghost=my_branch_2
git checkout $commit1
git checkout -b $current_branch_ghost
git cherry-pick $commit3
git push --force origin HEAD:$current_branch
git reset --hard origin/$current_branch
git branch -d $current_branch_ghost
git checkout my_branch
# take a look into your local changes, for instance we are going to squeeze 4 commits
git reset --soft HEAD~4
# in case of having external changes and compress commits: git rebase -i HEAD~4
git commit
git push --force
git push --force-with-lease origin my_branch
git rev-parse "remotes/origin/release-6.0.0"
git rev-parse HEAD
git log -n 1 --pretty=format:'%h' > /tmp/gitHash.txt
git ls-remote | grep <hashcode>
git rev-parse remotes/origin/release-data-api-13.3
check all branches for certain commit ( is commit in branch, is branch contains commit ), commit include in
git branch --all --contains 0ff27c79738a6ed718baae3e18c74ba87f16a314
git branch --all --contains {name-of-the-branch}
git branch --all --merged 0ff27c79738a6ed718baae3e18c74ba87f16a314
git merge-base --is-ancestor <commit_or_branch> <is_commit_in_branch>; if [[ 1 -eq "$?" ]]; then echo "NOT included"; else echo "included"; fi
git log -1 0ff27c79738a6ed718baae3e18c74ba87f16a314
git log -5 develop
git log -10 --author "Frank Newman" -- my-sub-folder-in-repo
git relog -5
git log -5 develop --name-only
git log -10 --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset%n' --all --author "Cherkashyn"
git shortlog -sne --all
git whatchanged --author="Cherkashyn" --name-only
git log --author="Cherkashyn" --name-status --diff-filter=M | grep "^M" | sort | uniq -c | sort -rh
git diff-tree --no-commit-id --name-only -r ec3772
git diff ec3772~ ec3772
git log --all --graph --decorate --oneline --simplify-by-decoration
git log | grep -i jwt
git log --all --grep='jwt'
git log --name-only --grep='XVIZ instance'
git log -g --grep='jwt'
git branch --no-merged
git checkout -t remotes/origin/release
git checkout experiment -- deployment/connection_pool.py
git checkout origin/develop datastorage/mysql/scripts/_write_ddl.sh
# print to stdout
git show origin/develop:datastorage/mysql/scripts/_write_ddl.sh > _write_ddl.sh
git config --global user.name "vitalii cherkashyn"
git config --global user.email [email protected]
git config --global --list
or
# git config --global --edit
[user]
name=Vitalii Cherkashyn
email[email protected]
git config --global core.editor "vim"
git config --global credential.helper store
git config --system --unset credential.helper
git config --global --unset credential.helper
git branch --all --merged "release" --verbose
git branch --all --no-merged "release" --verbose
git branch -vv
git diff --name-status develop release-6.0.0
git cherry develop release-6.0.0
git diff develop..master -- myfile.cs
git diff master -- myfile.cs
git diff --staged
difference between two branches, list of commits list commits, messages list of messages between two commits
git rev-list master..search-client-solr
# by author
git rev-list --author="Vitalii Cherkashyn" item-598233..item-530201
# list of files that were changed
git show --name-only --oneline `git rev-list --author="Vitalii Cherkashyn" item-598233..item-530201`
# list of commits between two branches
git show --name-only --oneline `git rev-list d3ef784e62fdac97528a9f458b2e583ceee0ba3d..eec5683ed0fa5c16e930cd7579e32fc0af268191`
# git tag --list
start_tag='1.0.13'
end_tag='1.1.2'
start_commit=$(git show-ref --hash $start_tag )
end_commit=$(git show-ref --hash $end_tag )
git show --name-only --oneline `git rev-list $start_commit..$end_commit`
start_tag='1.1.2'
start_commit=$(git show-ref --hash $start_tag )
end_commit=$(git log -n 1 --pretty=format:'%H')
git show --name-only --oneline `git rev-list $start_commit..$end_commit`
git log -1 --patch
git log -1 --patch -- path/to/controller_email.py
branch_source="master"
branch_dest="feature-2121"
file_name="src/libs/service/message_encoding.py"
# check
git diff $branch_dest..$branch_source $file_name
# apply
git checkout $branch_source -- $file_name
# check
git diff $branch_source $file_name
git tag -a $newVersion -m 'deployment_jenkins_job'
git push --tags $remoteUrl
# fetch tags
git fetch --all --tags -prune
# list of all tags list tag list
git tag
git tag --list
git show-ref --tags
# tag checkout tag
git tags/1.0.13
git show-ref -s 1.1.2
# remove remote
git push --delete origin 1.1.0
git push origin :refs/tags/1.1.0
git fetch --all --tags -prune
# or remove remote
git push --delete origin 1.2.1
# remove local
git tag -d 1.1.0
git push origin :refs/tags/1.1.0
git diff --name-only --diff-filter=U
git checkout --theirs path/to/file
git fetch --all --prune
git log --all --grep "BCM-642"
git grep '^test$'
git rev-parse HEAD
git log --all -- "**db-update.py"
git log --all -- db-scripts/src/main/python/db-diff/db-update.py
git log path/to/file
git log -p -- path/to/file
git diff-tree --no-commit-id --name-only -r 6dee1f44f56cdaa673bbfc3a76213dec48ecc983
git fetch --all
git diff HEAD..origin/develop
git show 143243a3754c51b16c24a2edcac4bcb32cf0a37d -- db-scripts/src/main/python/db-diff/db-update.py
git diff {hash}~ {hash}
git cherry-pick -n {commit-hash}
# in case of merge conflict during cherry-pick
git cherry-pick --continue
git cherry-pick --abort
git cherry-pick --skip
# !!! don't use "git commit"
git revert <commit>
git commit --amend -m "<new message>"
git log --pretty=format:"%h - %an, %ar : %s" <commit SHA> -1
git blame path/to/file
git blame path/to/file | grep search_line
git --git-dir=C:\project\horus\.git --work-tree=C:\project\horus branch --all
find . -name ".git" -maxdepth 2 | while read each_file
do
echo $each_file
git --git-dir=$each_file --work-tree=`dirname $each_file` status
done
git remote -v
PATH_TO_FOLDER=/home/projects/bash-example
# remote set
git remote add local-hdd file://${PATH_TO_FOLDER}/.git
# commit all files
git add *; git commit --message 'add all files to git'
# set tracking branch
git branch --set-upstream-to=local-hdd/master master
# avoid to have "refusing to merge unrelated histories"
git fetch --all
git merge master --allow-unrelated-histories
# merge all conflicts
# in original folder move to another branch for avoiding: branch is currently checked out
git push local-hdd HEAD:master
# go to origin folder
cd $PATH_TO_FOLDER
git reset --soft origin/master
git diff
example of using github.com
# Settings -> Developer settings -> Personal access tokens
# https://github.com/settings/apps
git remote set-url origin https://$GIT_TOKEN@github.com/cherkavi/python-utilitites.git
remove old password-access approach
git remote set-url --delete origin https://github.com/cherkavi/python-utilitites.git
git remote set-url origin [email protected]:adp/data-management.git
# username - token
# password - empty string
git clone https://[email protected]/swh/management.git
git clone https://oauth2:[email protected]/swh/management.git
git clone https://$GIT_TOKEN:[email protected]/swh/management.git
git commmit -am 'hello my commit message'
GIT_SSH_COMMAND = "ssh -i $key"
git push
git rm --cached -r .
git reset --hard origin/master
if during the access ( clone, pull ) issue appear:
fatal: unable to access 'http://localhost:3000/vitalii/sensor-yaml.git/': The requested URL returned error: 407
or
fatal: unable to access 'http://localhost:3000/vitalii/sensor-yaml.git/': The requested URL returned error: 503
use next command to 'simulate' cloning
git clone http://localhost:3000/vitalii/sensor-yaml.git
< equals >
wget http://localhost:3000/vitalii/sensor-yaml.git/info/refs?service=git-upload-pack
git clone --depth 1 https://github.com/kubernetes/minikube
git archive --remote=ssh://https://github.com/cherkavi/cheat-sheet HEAD jenkins.md
git remote update origin --prune
echo 'deb http://http.debian.net/debian wheezy-backports main' > /etc/apt/sources.list.d/wheezy-backports-main.list
curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash
tool installation
sudo apt-get install git-lfs
git lfs install
git lfs pull
if you are using SSH access to git, you should specify http credentials ( lfs is using http access ), to avoid possible errors: "Service Unavailable...", "Smudge error...", "Error downloading object"
git config --global credential.helper store
file .gitconfig will have next section
[credential]
helper = store
file ~/.git-credentials ( default from previous command ) should contains your http(s) credentials
https://username:[email protected]
https://username:[email protected]
be aware about upper case for environment variables
NO_PROXY=localhost,127.0.0.1,.localdomain,.advantage.org
HTTP_PROXY=muc.proxy
HTTPS_PROXY=muc.proxy
Encountered 1 file(s) that should have been pointers, but weren't:
git lfs migrate import --no-rewrite path-to-file
# create bare repo file:////home/projects/bmw/temp/repo
# for avoiding: error: failed to push some refs to
mkdir /home/projects/bmw/temp/repo
cd /home/projects/bmw/temp/repo
git init --bare
# or git config --bool core.bare true
# clone to copy #1
mkdir /home/projects/bmw/temp/repo2
cd /home/projects/bmw/temp/repo2
git clone file:////home/projects/bmw/temp/repo
# clone to copy #1
mkdir /home/projects/bmw/temp/repo3
cd /home/projects/bmw/temp/repo3
git clone file:////home/projects/bmw/temp/repo
git config --global http.proxy 139.7.95.74:8080
# proxy settings
git config --global http.proxy http://proxyuser:[email protected]:8080
git config --global https.proxy 139.7.95.74:8080
git config --global --get http.proxy
git config --global --unset http.proxy
git config core.sshCommand 'ssh -i private_key_file'
.gitattributes
*.sh -crlf
curl -s https://api.github.com/repos/bugy/script-server/releases/latest | grep browser_download_url | cut -d '"' -f 4
wget https://raw.githubusercontent.com/cherkavi/cheat-sheet/master/git.md
#git settings parse_git_branch() {
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
export PS1="\[\033[32m\]\W\[\033[33m\]\$(parse_git_branch)\[\033[00m\] $ "
git update-index --assume-unchanged .idea/vcs.xml
mv .git/hooks/commit-msg.sample .git/hooks/commit-msg
result=`cat $1 | grep "^check-commit"`
if [ "$result" != "" ]; then
exit 0
else
echo "message should start from 'check-commit'"
exit 1
fi
if you want to commit hooks, then create separate folder and put all files there
git --git-dir $DIR_PROJECT/integration-prototype/.git config core.hooksPath $DIR_PROJECT/integration-prototype/.git_hooks
git --git-dir $DIR_PROJECT/integration-prototype/.git config commit.template $DIR_PROJECT/integration-prototype/.commit.template
pip install gitlint
gitlint install-hook
.gitlint
# See http://jorisroovers.github.io/gitlint/rules/ for a full description.
[general]
ignore=T3,T5,B1,B5,B7
[title-match-regex]
regex=^[A-Z].{0,71}[^?!.,:; ]
export PAT=07f1798524d6f79... export GIT_USER=tech_user export GIT_USER2=another_user export GIT_REPO=system_description export GIT_URL=https://github.sbbgroup.zur
# read user's data
curl -H "Authorization: token ${PAT}" ${GIT_URL}/api/v3/users/${GIT_USER}
curl -u ${GIT_USER}:${PAT} ${GIT_URL}/api/v3/users/${GIT_USER2}
# list of repositories
curl -u ${GIT_USER}:${PAT} ${GIT_URL}/api/v3/users/${GIT_USER2}/repos | grep html_url
# read repository
curl -u ${GIT_USER}:${PAT} ${GIT_URL}/api/v3/repos/${GIT_USER2}/${GIT_REPO}
curl -H "Authorization: token ${PAT}" ${GIT_URL}/api/v3/repos/${GIT_USER2}/${GIT_REPO}
# read path
export FILE_PATH=doc/README
curl -u ${GIT_USER}:${PAT} ${GIT_URL}/api/v3/repos/${GIT_USER2}/${GIT_REPO}/contents/${FILE_PATH}
curl -u ${GIT_USER}:${PAT} ${GIT_URL}/api/v3/repos/${GIT_USER2}/${GIT_REPO}/contents/${FILE_PATH} | jq .download_url
# https://docs.github.com/en/[email protected]/rest/reference/repos#contents
# read content
DOWNLOAD_URL=`curl -u ${GIT_USER}:${PAT} ${GIT_URL}/api/v3/repos/${GIT_USER2}/${GIT_REPO}/contents/${FILE_PATH} | jq .download_url | tr '"' ' '`
echo $DOWNLOAD_URL
curl -u ${GIT_USER}:${PAT} -X GET $DOWNLOAD_URL
# read content
curl -u ${GIT_USER}:${PAT} ${GIT_URL}/api/v3/repos/${GIT_USER2}/${GIT_REPO}/contents/${FILE_PATH} | jq -r ".content" | base64 --decode