30
loading...
This website collects cookies to deliver better user experience
git add .
git commit -m "commit message"
git push origin <branch-name>
GnuPG allows you to encrypt and sign your data and communications. GPG, or GNU Privacy Guard is a public key cryptography implementation. This allows for the secure transmission of information between parties and can be used to verify that the origin of a message is genuine.
git rebase -i 3a08ed4
pick
next to each commit ID and the message. pick 3a08ed4 added Summer playlist to Spotify
pick 5a68cc9 updated README for Summer Plans
pick 6ff7e5a removed spring header
# Rebase c6e777e..39574f2 onto c992o90 (3 commands)
#
# Commands:
pick
with edit
within the editor and save your changes with ESC
and then :wq
edit 3a08ed4 added Summer playlist to Spotify
edit 5a68cc9 updated README for Summer Plans
edit 6ff7e5a removed spring header
# Rebase c6e777e..39574f2 onto c992o90 (3 commands)
#
# Commands:
git commit ---amend --no-edit -S
--amend
: fix/change the previous commit message--no-edit
: use the existing commit message, no need to edit this. -S
: GPG-sign the commit. git rebase --continue
git log --show-signature