Difference between revisions of "Using Git GUI"

From Geos-chem
Jump to: navigation, search
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
__FORCETOC__
 
__FORCETOC__
'''''[[Viewing the revision history|Previous]] | [[Branching|Next]] | [[Guide to using Git with GEOS-Chem]] | [[Getting Started with GEOS-Chem]] | [[Main Page|GEOS-Chem Main Page]]'''''
+
'''''[[Viewing the revision history|Previous]] | [[Branching|Next]] | [[Guide to using Git with GEOS-Chem]]'''''
  
 
#[[Introduction to Git]]
 
#[[Introduction to Git]]
Line 97: Line 97:
  
 
== Further reading ==
 
== Further reading ==
TBD
+
 
 +
#[https://git-scm.com/book/en/v2/Appendix-A%3A-Git-in-Other-Environments-Graphical-Interfaces ''Graphical interfaces'' (Git documentation)]
 +
 
  
 
----
 
----
'''''[[Viewing the revision history|Previous]] | [[Branching|Next]] | [[Guide to using Git with GEOS-Chem]] | [[Getting Started with GEOS-Chem]] | [[Main Page|GEOS-Chem Main Page]]'''''
+
'''''[[Viewing the revision history|Previous]] | [[Branching|Next]] | [[Guide to using Git with GEOS-Chem]]'''''

Latest revision as of 20:27, 5 August 2019

Previous | Next | Guide to using Git with GEOS-Chem

  1. Introduction to Git
  2. Installing Git
  3. First-time Git setup
  4. Cloning (i.e. downloading for the first time)
  5. Ignoring files
  6. Viewing the revision history
  7. Using Git GUI
  8. Branching
  9. Committing
  10. Tagging
  11. Merging
  12. Receiving updates (aka pulling)
  13. Using patches to share your updates with others
  14. Advanced Git usage
  15. Git and Github tutorials


Overview

On this page, we provide information about using the Git GUI interface.

The Git Graphical User Interface (GUI)

We recommend using the git gui for source code management.

(1) 'Start Git GUI:

git gui &

(2) The Git GUI screen will appear:

GitGui.png

(3) On the left you will see two windows:

  1. Unstaged Changes (@ top-left): An unstaged change is a modification that Git does not know about yet. If you modified any files since the last commit, then they should be displayed in this window. Also, right above this window you will find the name of the current checked-out branch.
  2. Staged Changes (@ bottom-left): These are changes that Git will add to the repository the very next time you make a commit.

Git Gui menus

Repository menu

GitGuiRepoMenu.png

The most important of these commands are:

  1. Visualize all branch history: This will open the Gitk browser so that you can view the revision history.
  2. Compress database: You can pack the database to reduce storage size.

Edit menu

GitGuiEditMenu.png

  1. The Undo, Redo, Cut, Copy, Paste, Delete, and Select All menu items are self-explanatory.
  2. Options: will open a dialog box where you can customize the look and feel of the Git Gui (i.e. set colors, fonts, etc.)

Branch menu

GitGuiBranchMenu.png

This menu is pretty self-explanatory. You can choose to:

  1. Create a new branch
  2. Checkout an existing branch
  3. Rename a branch
  4. Delete a branch
  5. Reset a branch (i.e. ignore commits newer than the present commit)

More information about branching is covered in on the Branching page.

Commit menu

GitGuiCommitMenu.png

This menu contains options for committing code into the repository. However, the most important of these are:

  1. Sign off: Allows you to add your signature to the commit message (which you type in the lower right-hand window).
  2. Commit: Commits the staged files (in the lower-left hand window) into the repository.

Also note that both Sign Off and Commit have buttons at the front of the GUI (which you will probably use more often).

Merge menu

GitGuiMergeMenu.png

The most important command is:

  1. Local merge: This will pop open a dialog box and ask you which branch in your local code folder that you would like to merge into the current branch.

Remote menu

GitGuiRemoteMenu.png

You typically will not use these commands, unless you have write-access to the remote repository.

Further reading

  1. Graphical interfaces (Git documentation)



Previous | Next | Guide to using Git with GEOS-Chem