From: Jan Nieuwenhuizen <janneke@gnu.org>
To: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Cc: Han-Wen Nienhuys <hanwen@xs4all.nl>, git@vger.kernel.org
Subject: Re: MinGW binary installer available
Date: Thu, 08 Feb 2007 20:58:28 +0100 [thread overview]
Message-ID: <87abzoh15n.fsf@peder.flower> (raw)
In-Reply-To: <Pine.LNX.4.63.0702080051420.22628@wbgn013.biozentrum.uni-wuerzburg.de> (Johannes Schindelin's message of "Thu\, 8 Feb 2007 00\:52\:28 +0100 \(CET\)")
Johannes Schindelin <Johannes.Schindelin@gmx.de> writes:
> http://lilypond.org/git/binaries/mingw/git-1.4.9993-2.mingw.exe
Yes, much better. There's still the bash script problem, maybe
these should be replaced with python?
$ ./git-1.4.9993-2.mingw.exe /S
20:48:11 root@Abbicci:~
$ PATH=/cygdrive/c/Program\ Files/Git/usr/bin/:$PATH
20:48:46 root@Abbicci:~
$ which git
/cygdrive/c/Program Files/Git/usr/bin/git
20:48:49 root@Abbicci:~
$ mkdir -p vc/test.git
20:49:03 root@Abbicci:~
$ cd vc/test.git/
20:49:05 root@Abbicci:~/vc/test.git
$ git init
Initialized empty Git repository in .git/
warning: templates not found /usr/share/git-core/templates/
20:52:31 root@Abbicci:~/vc/test.git
$ git status
git: 'status' is not a git-command
The most commonly used git commands are:
add Add file contents to the changeset to be committed next
apply Apply a patch on a git index file and a working tree
archive Creates an archive of files from a named tree
bisect Find the change that introduced a bug by binary search
branch List, create, or delete branches
checkout Checkout and switch to a branch
cherry-pick Apply the change introduced by an existing commit
clone Clones a repository into a new directory
commit Record changes to the repository
diff Show changes between commits, commit and working tree, etc
fetch Download objects and refs from another repository
grep Print lines matching a pattern
init Create an empty git repository or reinitialize an existing one
log Show commit logs
merge Join two or more development histories together
mv Move or rename a file, a directory, or a symlink
prune Prunes all unreachable objects from the object database
pull Fetch from and merge with another repository or a local branch
push Update remote refs along with associated objects
rebase Forward-port local commits to the updated upstream head
reset Reset current HEAD to the specified state
revert Revert an existing commit
rm Remove files from the working tree and from the index
show Show various types of objects
show-branch Show branches and their commits
status Show the working tree status
tag Create, list, delete or verify a tag object signed with GPG
(use 'git help -a' to get a list of all installed git commands)
[1]20:52:36 root@Abbicci:~/vc/test.git
$ git-status
# On branch master
#
# Initial commit
#
# Changes to be committed:
# (use "git rm --cached <file>..." to unstage)
#
# new file: boo
#
20:53:19 root@Abbicci:~/vc/test.git
$ git-commit -a -m initial
*** Your name cannot be determined from your system services (gecos).
Run
git config user.email "you@email.com"
git config user.name "Your Name"
To set the identity in this repository.
Add --global to set your account's default
fatal: empty ident <> not allowed
[128]20:53:25 root@Abbicci:~/vc/test.git
$ git-config user.email "you@email.com"
20:54:06 root@Abbicci:~/vc/test.git
$ git-config user.name "Your Name"
20:54:13 root@Abbicci:~/vc/test.git
$ git-commit -a -m initial
Created initial commit 7278148bc4ddc1c5d6cbb88a874b377f9813ec83
0 files changed, 0 insertions(+), 0 deletions(-)
create mode 100644 boo
20:54:24 root@Abbicci:~/vc/test.git
$ git-show head
commit 7278148bc4ddc1c5d6cbb88a874b377f9813ec83
Author: Your Name <you@email.com>
Date: Thu Feb 8 20:54:24 2007 +0100
initial
diff --git a/boo b/boo
new file mode 100644
index 0000000..e69de29
20:54:28 root@Abbicci:~/vc/test.git
--
Jan Nieuwenhuizen <janneke@gnu.org> | GNU LilyPond - The music typesetter
http://www.xs4all.nl/~jantien | http://www.lilypond.org
next prev parent reply other threads:[~2007-02-08 20:05 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-02-07 14:38 MinGW binary installer available Han-Wen Nienhuys
2007-02-07 14:55 ` Johannes Schindelin
2007-02-07 15:05 ` Johannes Schindelin
2007-02-07 15:14 ` Han-Wen Nienhuys
2007-02-08 8:09 ` Johannes Sixt
2007-02-07 15:08 ` Han-Wen Nienhuys
2007-02-07 15:26 ` Johannes Schindelin
2007-02-07 15:34 ` Han-Wen Nienhuys
2007-02-07 16:16 ` Johannes Schindelin
2007-02-07 17:05 ` Han-Wen Nienhuys
2007-02-07 17:10 ` Johannes Schindelin
2007-02-07 17:35 ` Han-Wen Nienhuys
2007-02-07 21:10 ` Han-Wen Nienhuys
2007-02-08 8:12 ` Johannes Sixt
2007-02-08 8:09 ` Johannes Sixt
2007-02-08 10:14 ` Han-Wen Nienhuys
2007-02-08 21:15 ` Robin Rosenberg
2007-02-08 21:18 ` Johannes Schindelin
2007-02-08 21:22 ` Shawn O. Pearce
2007-02-08 21:26 ` Johannes Schindelin
2007-02-07 16:03 ` Han-Wen Nienhuys
2007-02-07 20:18 ` Jan Nieuwenhuizen
2007-02-07 21:21 ` Han-Wen Nienhuys
2007-02-07 23:51 ` Johannes Schindelin
2007-02-07 22:10 ` Han-Wen Nienhuys
2007-02-07 23:52 ` Johannes Schindelin
2007-02-08 19:58 ` Jan Nieuwenhuizen [this message]
2007-02-08 20:08 ` Johannes Schindelin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87abzoh15n.fsf@peder.flower \
--to=janneke@gnu.org \
--cc=Johannes.Schindelin@gmx.de \
--cc=git@vger.kernel.org \
--cc=hanwen@xs4all.nl \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).