mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
57c2e9e9ba
Git does not appear to have anything like cg clone -s, which makes the clone in the current directory rather than in a new directory. It seems possible to work around that with: git clone --bare http://elinks.cz/elinks.git .git git --git-dir=.git config core.bare false git reset --hard git clean -f git checkout elinks-0.12 but that's already so complex that I think it'll be easier to just remove the whole directory and clone to a new one. The whole concept of first downloading a snapshot and then updating that from version control comes from the time when ELinks was in CVS. It made sense then because CVS could download deltas based on the data in the CVS subdirectories contained in the snapshots. However, Git wants to get the whole history and does not benefit from having the files of a single commit available in advance.
20 lines
758 B
Plaintext
20 lines
758 B
Plaintext
The ChangeLog file has been removed. You can get the equivalent information
|
|
by doing
|
|
|
|
$ git log
|
|
|
|
in a checked out GIT tree, or using the gitweb interface available at:
|
|
|
|
http://repo.or.cz/w/elinks.git
|
|
|
|
The data in the main repository reaches back to 2005-09-16, when
|
|
ELinks switched from CVS to GIT. To see changes made in CVS before
|
|
that, download the history with the contrib/grafthistory.sh script.
|
|
Unfortunately, because files in the CVS repository have been moved or
|
|
copied around, checking out a historical version often places files in
|
|
the wrong directories. The history is usable for git-blame, however.
|
|
It is currently also viewable at these sites:
|
|
|
|
http://pasky.or.cz/gitweb.cgi?p=elinks-history.git
|
|
http://cvsweb.elinks.cz/cvsweb.cgi/elinks/
|