Top "Dvcs" questions

DVCS stands for Distributed Version Control System.

How do I show the changes which have been staged?

I staged a few changes to be committed; how can I see the diff of all files which are staged …

git diff dvcs git-diff git-stage
Pushing to Git returning Error Code 403 fatal: HTTP request failed

I was able to clone a copy of this repo over HTTPS authenticated. I've made some commits and want to …

git github dvcs
Undo working copy modifications of one file in Git?

After the last commit, I modified a bunch of files in my working copy, but I want to undo the …

git file version-control dvcs undo
What is the Difference Between Mercurial and Git?

I've been using git for some time now on Windows (with msysGit) and I like the idea of distributed source …

git version-control mercurial comparison dvcs
How can I stop .gitignore from appearing in the list of untracked files?

I just did a git init on the root of my new project. Then I created a .gitignore file. Now, …

git version-control dvcs gitignore
What's the best three-way merge tool?

Subversion, Git, Mercurial and others support three-way merges (combining mine, theirs, and the "base" revision) and support graphical tools to …

version-control merge dvcs
Git push won't do anything (everything up-to-date)

I'm trying to update a Git repository on GitHub. I made a bunch of changes, added them, committed then attempted …

git dvcs
Mercurial — revert back to old version and continue from there

I'm using Mercurial locally for a project (it's the only repo there's no pushing/pulling to/from anywhere else). To …

version-control mercurial branch dvcs revert
Found a swap file by the name

When I try to merge my branch with a remote branch: git merge feature/remote_branch I got this message: …

git github git-merge dvcs swapfile
Git create branch from current checked out master?

There is a git controlled folder on a server where the main branch is checked out and a whole pile …

git version-control dvcs git-branch