summaryrefslogtreecommitdiff
path: root/git/refs/symbolic.py
Commit message (Collapse)AuthorAgeFilesLines
* Update symbolic.pyDominic2021-07-311-5/+6
|
* Update symbolic.pyDominic2021-07-311-43/+684
|
* Update symbolic.pyDominic2021-07-311-699/+43
|
* Update symbolic.pyDominic2021-07-311-15/+24
|
* Update symbolic.pyDominic2021-07-311-2/+7
|
* Update symbolic.pyDominic2021-07-311-1/+1
|
* Update symbolic.pyDominic2021-07-311-86/+98
|
* Replace all Typeguard with cast, revert update to typing-extensions==3.10.0Yobmod2021-07-241-1/+1
|
* rmv redundant IOerror exceptYobmod2021-07-191-658/+0
|
* Add types to refs/symbolic.pyYobmod2021-07-191-0/+674
|
* Improve typing of config_levels, add assert_never()Yobmod2021-07-051-1/+2
|
* Type Traversable.traverse() better, start types of submoduleYobmod2021-06-301-2/+2
|
* second pass of adding typesyobmod2021-05-031-1/+1
|
* add initial types to remote.pyyobmod2021-05-031-1/+1
|
* start add types to util.pyyobmod2021-02-281-1/+1
|
* Ensure only fully matching symrefs are deletedSimon Westphahl2020-08-121-2/+4
| | | | | | | | Deleting a symbolic ref with e.g. the name 'refs/remotes/origin/mas' would also delete 'refs/remotes/origin/master' if the ref had to be deleted from the pack file. In order to fix this the full ref is now checked for a match.
* Fix exception causes in 7 modulesRam Rachum2020-06-131-4/+4
|
* Fix flake8 errorsSebastian Thiel2020-05-281-1/+1
|
* Use UTF-8 encoding when getting information about a symbolic referenceHarmon2020-02-181-1/+1
| | | | Fixes #774
* Remove and replace compat.string_typesHarmon2020-02-081-5/+2
|
* renamed unused variablesPratik Anurag2019-10-151-1/+1
|
* Rewrite unnecessary dict/list/tuple calls as literalsHugo2018-03-181-1/+1
|
* recognize the new packed-ref header formatBrenda J. Butler2017-10-131-1/+9
| | | | | | | as long as line contains "peeled", accept it fixes the PackingType of packed-Refs not understood: # pack-refs with: peeled fully-peeled sorted problem
* worktrees: make non-packed refs also work correctly.Peter Jones2017-08-221-24/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Turns out aec58a9 did the right thing for /packed/ refs, but didn't work correctly on /unpacked/ refs. So this patch gives unpacked refs the same treatment. Without the fix here, the test added will cause this traceback: ====================================================================== ERROR: Check that we find .git as a worktree file and find the worktree ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/pjones/devel/github.com/GitPython/git/test/lib/helper.py", line 92, in wrapper return func(self, path) File "/home/pjones/devel/github.com/GitPython/git/test/test_repo.py", line 938, in test_git_work_tree_dotgit self.assertIsInstance(repo.heads['aaaaaaaa'], Head) File "/home/pjones/devel/github.com/GitPython/git/util.py", line 893, in __getitem__ raise IndexError("No item found with id %r" % (self._prefix + index)) IndexError: No item found with id 'aaaaaaaa' Woops. Things I've learned: - test_remote doesn't work currently if you start on a branch. I think it never did? - Because of 346424da, all *sorts* of stuff in the test suite doesn't work if you name your development branch "packed-refs" (This seems like a bug...) Signed-off-by: Peter Jones <pjones@redhat.com>
* Repo: handle worktrees betterPeter Jones2017-07-011-3/+24
| | | | | | | | | | | | | This makes Repo("foo") work when foo/.git is a file of the form created by "git worktree add", i.e. it's a text file that says: gitdir: /home/me/project/.git/worktrees/bar and where /home/me/project/.git/ is the nominal gitdir, but /home/me/project/.git/worktrees/bar has this worktree's HEAD etc and a "gitdir" file that contains the path of foo/.git . Signed-off-by: Peter Jones <pjones@redhat.com>
* fix(refs): don't assume linux path separatorSebastian Thiel2017-02-251-1/+1
| | | | | | Instead, work with os.sep. Fixes #586
* Merge branch 'cygwin' of https://github.com/ankostis/GitPython into ↵Sebastian Thiel2016-10-221-29/+23
|\ | | | | | | ankostis-cygwin
| * src: reduce needless deps to `gitdb.util`Kostis Anagnostopoulos2016-10-161-23/+15
| |
| * src: import os.path as ospKostis Anagnostopoulos2016-10-161-6/+8
| |
* | Fix some typosSantiago Castro2016-10-201-5/+5
|/
* src: No PyDev warningsKostis Anagnostopoulos2016-10-041-3/+3
| | | | | | | | + Mark all unused vars and other non-pep8 (PyDev) warnings + test_utils: + enable & fix forgotten IterableList looped path. + unittestize all assertions. + remote: minor fix progress dispatching unknown err-lines
* io, #519: ALL open() --> with open()Kostis Anagnostopoulos2016-10-011-38/+42
| | | + Some cases had restructuring of code.
* Use binary string constant for concatenation.Bert Wesarg2016-07-191-1/+1
|
* Add missing newline when writing a symbolic ref.Bert Wesarg2016-07-191-1/+1
|
* fix(refs): don't raise StopIterationSebastian Thiel2016-03-281-1/+1
| | | | Fixes #394
* Ensure file resources are releasedDavid García Garzón2015-07-261-17/+17
|
* Assure to not iterate packed-refs file, ever.Sebastian Thiel2015-02-191-0/+3
| | | | Related to #252
* Overhauled all tutorials, and placed them in a unit-test.Sebastian Thiel2015-01-221-1/+1
| | | | | | That way they are protected from regression. Fixes #239
* Now finally, tests should be working on travis too.Sebastian Thiel2015-01-081-3/+6
| | | | Now handling the new exception BadName as well
* Make flake8 happySebastian Thiel2015-01-061-1/+1
|
* test_refs worksSebastian Thiel2015-01-061-2/+4
|
* test_commit works once againSebastian Thiel2015-01-051-1/+1
|
* Intermediate commit: test_config and test_actor worksSebastian Thiel2015-01-051-6/+9
| | | | | Kind of tackling the tasks step by step, picking low-hanging fruit first, or the ones that everyone depends on
* Dum brute force conversion of all types.Sebastian Thiel2015-01-041-1/+2
| | | | | | However, StringIO really is ByteIO in most cases, and py2.7 should run but doesn't. This should be made work first.
* initial set of adjustments to make (most) imports work.Sebastian Thiel2015-01-041-1/+2
| | | | More to come, especially when it's about strings
* Removed unnecessary (non-gitpython) tests and fixed flake80.3.3Sebastian Thiel2015-01-041-0/+1
|
* Bumped version, updated changelog, reduced code smellSebastian Thiel2015-01-041-1/+3
| | | | | There is more work to do though, as many imports are still incorrect. Also, there are still print statements
* Fixes https://github.com/gitpython-developers/GitPython/issues/130Sebastian Thiel2014-11-191-1/+3
|
* Applied autopep8Sebastian Thiel2014-11-191-31/+33
| | | | | Commandline was autopep8 -j 8 --max-line-length 120 --in-place --recursive --exclude "*gitdb*,*async*" git/
* Added SymbolicReference.is_remote() utility method.Sebastian Thiel2014-11-191-0/+4
| | | | | | Based on the functionality proposed in https://github.com/gitpython-developers/GitPython/pull/101 [ci skip]