forked from ESCOMP/CESM
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request ESCOMP#180 from johnpaulalex/doc_test
More documentation about test_sys_checkout
- Loading branch information
Showing
3 changed files
with
94 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
Git repositories for testing git-related behavior. For usage and terminology notes, see test/test_sys_checkout.py. | ||
|
||
To list files and view file contents at HEAD: | ||
``` | ||
cd <repo_dir> | ||
git ls-tree --full-tree -r --name-only HEAD | ||
git cat-file -p HEAD:<filename> | ||
``` | ||
|
||
container.git/ | ||
readme.txt | ||
|
||
simple-ext.git/ | ||
(has branches: feature2, feature3) | ||
(has tags: tag1, tag2) | ||
readme.txt | ||
simple_subdir/subdir_file.txt | ||
|
||
simple-ext-fork.git/ | ||
(has tags: abandoned-feature, forked-feature-v1, tag1) | ||
(has branch: feature2) | ||
readme.txt | ||
|
||
mixed-cont-ext.git/ | ||
(has branch: new-feature) | ||
readme.txt | ||
sub-externals.cfg (refers to simple-ext.git/ repo) | ||
|
||
error/ | ||
(no git repo here, just a readme.txt in the clear) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters