├── .gitignore ├── CHANGES.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── git_cc ├── __init__.py ├── cache.py ├── checkin.py ├── clearcase.py ├── common.py ├── gitcc.py ├── init.py ├── rebase.py ├── reset.py ├── status.py ├── sync.py ├── tag.py ├── update.py └── version.py ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── copy-data │ └── a.txt ├── output-as-set-data │ ├── a.txt │ └── b.txt ├── print_dir.py ├── sync-config │ ├── gitcc │ └── gitcc-empty ├── sync-data │ └── simple-tree │ │ ├── a.txt │ │ ├── lost+found │ │ └── c.txt │ │ └── subdir │ │ └── b.txt ├── test-cache.py ├── test-checkin.py ├── test_imports.py ├── test_print_version.py ├── test_sync.py ├── test_users_module_import.py └── user-config │ ├── gitcc │ ├── gitcc-abs │ ├── gitcc-empty │ └── users.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- 1 | # Emacs 2 | *~ 3 | *# 4 | 5 | # Python 6 | *.pyc 7 | .tox/ 8 | build/ 9 | dist/ 10 | git_cc.egg-info/ -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charleso/git-cc/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charleso/git-cc/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charleso/git-cc/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charleso/git-cc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charleso/git-cc/HEAD/README.md -------------------------------------------------------------------------------- /git_cc/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.0.1.dev0' 2 | -------------------------------------------------------------------------------- /git_cc/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charleso/git-cc/HEAD/git_cc/cache.py -------------------------------------------------------------------------------- /git_cc/checkin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charleso/git-cc/HEAD/git_cc/checkin.py -------------------------------------------------------------------------------- /git_cc/clearcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charleso/git-cc/HEAD/git_cc/clearcase.py -------------------------------------------------------------------------------- /git_cc/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charleso/git-cc/HEAD/git_cc/common.py -------------------------------------------------------------------------------- /git_cc/gitcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charleso/git-cc/HEAD/git_cc/gitcc.py -------------------------------------------------------------------------------- /git_cc/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charleso/git-cc/HEAD/git_cc/init.py -------------------------------------------------------------------------------- /git_cc/rebase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charleso/git-cc/HEAD/git_cc/rebase.py -------------------------------------------------------------------------------- /git_cc/reset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charleso/git-cc/HEAD/git_cc/reset.py -------------------------------------------------------------------------------- /git_cc/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charleso/git-cc/HEAD/git_cc/status.py -------------------------------------------------------------------------------- /git_cc/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charleso/git-cc/HEAD/git_cc/sync.py -------------------------------------------------------------------------------- /git_cc/tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charleso/git-cc/HEAD/git_cc/tag.py -------------------------------------------------------------------------------- /git_cc/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charleso/git-cc/HEAD/git_cc/update.py -------------------------------------------------------------------------------- /git_cc/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charleso/git-cc/HEAD/git_cc/version.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charleso/git-cc/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [zest.releaser] 2 | python-file-with-version = git_cc/__init__.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charleso/git-cc/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charleso/git-cc/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/copy-data/a.txt: -------------------------------------------------------------------------------- 1 | This is a document about the letter "a". 2 | -------------------------------------------------------------------------------- /tests/output-as-set-data/a.txt: -------------------------------------------------------------------------------- 1 | This is a document about the letter "a". 2 | -------------------------------------------------------------------------------- /tests/output-as-set-data/b.txt: -------------------------------------------------------------------------------- 1 | This is a document about the letter "b". 2 | -------------------------------------------------------------------------------- /tests/print_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charleso/git-cc/HEAD/tests/print_dir.py -------------------------------------------------------------------------------- /tests/sync-config/gitcc: -------------------------------------------------------------------------------- 1 | [core] 2 | ignore_private_files=True -------------------------------------------------------------------------------- /tests/sync-config/gitcc-empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sync-data/simple-tree/a.txt: -------------------------------------------------------------------------------- 1 | This is a document about the letter "a". 2 | -------------------------------------------------------------------------------- /tests/sync-data/simple-tree/lost+found/c.txt: -------------------------------------------------------------------------------- 1 | This is a document about the letter "c". 2 | -------------------------------------------------------------------------------- /tests/sync-data/simple-tree/subdir/b.txt: -------------------------------------------------------------------------------- 1 | This is a document about the letter "b". 2 | -------------------------------------------------------------------------------- /tests/test-cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charleso/git-cc/HEAD/tests/test-cache.py -------------------------------------------------------------------------------- /tests/test-checkin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charleso/git-cc/HEAD/tests/test-checkin.py -------------------------------------------------------------------------------- /tests/test_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charleso/git-cc/HEAD/tests/test_imports.py -------------------------------------------------------------------------------- /tests/test_print_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charleso/git-cc/HEAD/tests/test_print_version.py -------------------------------------------------------------------------------- /tests/test_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charleso/git-cc/HEAD/tests/test_sync.py -------------------------------------------------------------------------------- /tests/test_users_module_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charleso/git-cc/HEAD/tests/test_users_module_import.py -------------------------------------------------------------------------------- /tests/user-config/gitcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charleso/git-cc/HEAD/tests/user-config/gitcc -------------------------------------------------------------------------------- /tests/user-config/gitcc-abs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charleso/git-cc/HEAD/tests/user-config/gitcc-abs -------------------------------------------------------------------------------- /tests/user-config/gitcc-empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/user-config/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charleso/git-cc/HEAD/tests/user-config/users.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charleso/git-cc/HEAD/tox.ini --------------------------------------------------------------------------------