Difference between revisions of "Emacs-VersionControl"

From Coder Merlin
Line 13: Line 13:
* Compare current version with repository : vc-diff -- diff with other revisions
* Compare current version with repository : vc-diff -- diff with other revisions
** '''C-x v ='''
** '''C-x v ='''
* Get latest version (pull) : vc-update -- Get latest changes from version control
** '''C-x v +'''
* Show log : vc-print-log -- show log
* Show log : vc-print-log -- show log
** '''C-x v l''' (last character is a lower-case L)
** '''C-x v l''' (last character is a lower-case L)

Revision as of 10:45, 23 November 2018

Within these castle walls be forged Mavens of Computer Science ...
— Merlin, The Coder

Version Control Within Emacs[edit]

IMPORTANT NOTE[edit]

In order to use these commands with a remote repository, it's best to cache your credentials. On the command line, execute:

git config --global credential.helper 'store --file ~/.git-credentials' 
git config --global credential.useHttpPath true


Useful Commands[edit]

  • Add file to version control : vc-register -- add a new file to version control
    • C-x v i (last character is a lower-case I)
  • Compare current version with repository : vc-diff -- diff with other revisions
    • C-x v =
  • Get latest version (pull) : vc-update -- Get latest changes from version control
    • C-x v +
  • Show log : vc-print-log -- show log
    • C-x v l (last character is a lower-case L)
  • Show status : vc-directory -- show all files which are not up to date
    • C-x v d
  • Revert buffer : vc-revert-buffer -- undo checkout
    • C-x v u