Difference between revisions of "Ignoring files"

From Geos-chem
Jump to: navigation, search
Line 1: Line 1:
 
__FORCETOC__
 
__FORCETOC__
'''''[[Cloning (i.e. downloading for the first time)|Previous]] | [[Using the Git Gui and Gitk browsers|Next]] | [[Guide to using Git with GEOS-Chem]] | [[Getting Started with GEOS-Chem]] | [[Main Page|GEOS-Chem Main Page]]'''''
+
'''''[[Cloning (i.e. downloading for the first time)|Previous]] | [[Viewing the Git version history|Next]] | [[Guide to using Git with GEOS-Chem]] | [[Getting Started with GEOS-Chem]] | [[Main Page|GEOS-Chem Main Page]]'''''
  
 
== Overview ==
 
== Overview ==
Line 59: Line 59:
  
 
----
 
----
'''''[[Cloning (i.e. downloading for the first time)|Previous]] | [[Using the Git Gui and Gitk browsers|Next]] | [[Guide to using Git with GEOS-Chem]] | [[Getting Started with GEOS-Chem]] | [[Main Page|GEOS-Chem Main Page]]'''''
+
'''''[[Cloning (i.e. downloading for the first time)|Previous]] | [[Viewing the Git version history|Next]] | [[Guide to using Git with GEOS-Chem]] | [[Getting Started with GEOS-Chem]] | [[Main Page|GEOS-Chem Main Page]]'''''

Revision as of 16:43, 19 June 2019

Previous | Next | Guide to using Git with GEOS-Chem | Getting Started with GEOS-Chem | GEOS-Chem Main Page

Overview

On this page, we provide information on how you can tell Git to ignore certain types of files that should not be included in the version control.

Excluding files from the Git version history

Git also allows you to ignore certain types of files that we don't need to track (e.g. anything that can be built from the source code). These typically include:

  • Object files (*.o)
  • Library files (*.a)
  • Module files (*.mod)
  • Autosave files (*~)
  • Executable files (geos, geostomas)

To exclude these types of files, you must create a .gitignore file. This is a text file containing the files (or file types, using the * wildcard) that you do not wish Git to track. Each folder in a Git source code repository must have its own .gitignore file. For most purposes, you can copy the same .gitignore file to each subfolder.

To check if a source code folder has a .gitignore file, type:

ls -a .gitignore

The .gitignore files used by GEOS-Chem

Here is what the .gitignore files that are found in each GEOS-Chem source code subfolder look like. You can of course edit these for your own purposes:

*.[oax]
*.mod
*.MOD
*~*
*.swp
*.bak
*.patch
*.diff
geos
geostomas
geosapm
diffs
bak
misc
test
GCHP
GIGC
*.pp.*
*.pdb
*.inst.*
*.continue.*
*.ppk
*.log
bin/*

Further reading

  1. The .gitignore file (Official Git documentation)
  2. Gitignore (Atlassian documentation)
  3. Ignoring files (Github help)

--Bob Yantosca (talk) 15:36, 19 June 2019 (UTC)


Previous | Next | Guide to using Git with GEOS-Chem | Getting Started with GEOS-Chem | GEOS-Chem Main Page