-
Updated
Oct 8, 2020 - C
version-control
Here are 531 public repositories matching this topic...
-
Updated
Oct 2, 2020 - C#
-
Updated
Oct 9, 2020 - Python
-
Updated
Sep 28, 2020 - PHP
-
Updated
Oct 7, 2020 - C#
-
Updated
Oct 4, 2020 - Python
-
Updated
Oct 2, 2020 - Python
-
Updated
Oct 11, 2020 - Rust
Issue #409 introduced a new function to indicate which systems support symlinks:
(defun straight--windows-os-p ()
"Check if the current operating system is Windows."
(memq system-type '(ms-dos windows-nt cygwin)))
cygwin should not be in this list, it supports symlinks. It runs on windows-os, but in its own environment, with its own filesystem including /tmp, /proc, .. and its ow
-
Updated
Aug 2, 2016 - Go
-
Updated
Mar 29, 2019 - JavaScript
-
Updated
Sep 29, 2020 - Emacs Lisp
-
Updated
Oct 8, 2020 - Java
-
Updated
Jan 8, 2019 - Go
-
Updated
Jul 9, 2020 - C#
-
Updated
Sep 4, 2020 - JavaScript
-
Updated
Oct 10, 2020 - Python
-
Updated
Oct 2, 2020 - JavaScript
The first episode is more a description of "a" version control system, rather than of Git. I think that's useful as this is the first exposure of many learners to the concept. Also, the model based on diffs in not completely accurate for Git. A compromise to be both accurate and keep it simple could be to change the second objective to reflect this. So, what about?
Understand the basics
-
Updated
Aug 24, 2020 - Python
-
Updated
Sep 28, 2020 - Python
-
Updated
Aug 21, 2020
-
Updated
Sep 11, 2020 - Python
-
Updated
Sep 4, 2020 - JavaScript
-
Updated
Mar 20, 2017 - JavaScript
Improve this page
Add a description, image, and links to the version-control topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the version-control topic, visit your repo's landing page and select "manage topics."
I'm trying to display the modifications in the last commit. To de so I'm trying to use
gl history.The verbose option provides a nice display of changes.
Unfortunately the
-l(limit) option is apparently limited.It seam that it always start counting history from the first commit. I couldn't find how to display the history starting from a specific commit, or HEAD - x commits.
An op