gitless icon indicating copy to clipboard operation
gitless copied to clipboard

A simple version control system built on top of Git

Results 91 gitless issues
Sort by recently updated
recently updated
newest added

On git, after creating a local branch, and trying to push the commits upstream, one gets a very helpful error message which tells you what to do: ```bash $ git...

enhancement

One of the overly complicated parts of git is pushing a branch to origin. I think every time I've ever pushed a branch I've pushed to the same remote repo...

I have a git repository, with a GitHub remote. So far, I've been using it with plain old Git, this is my first time trying GitLess. I'm on the master...

bug

When I do: ``` git clone [email protected]:pepa65/stillempty.git cd stillempty gl ``` There is a crash: ``` Traceback (most recent call last): File "gl.py", line 14, in File "gitless/cli/gl.py", line 71,...

bug

I thought gitless sounded like a great idea, so I proceeded to download the binary and initialize a local repo, and put some files in. Then I wanted to push...

bug

Git has _crude_ provisions for submodules. Maybe gitless can sanitize the use of submodules too. Take good care (better than git) of the branch of the submodule. Also don't use...

enhancement

For some reason I still think about "untrack" as a way to stop tracking remote branch and not about a way to stop tracking some file. How about renaming it...

I ran `gl branch -c origin/disproof_of_concept` and it unexpectedly pushed my local changes to the remote repository. My expectation was that it would update the local git state to associate...

If I do the following: ``` myrepo/$ myrepo/$ cd somedir myrepo/somedir/$ gl status ``` It says there are no tracked files, even though if I `cd ..` it will (correctly)...

I was in a situation where I created a branch and started modifying files. I then had to do an independent change, for which I created a new branch attached...