FreeBSD 14
Sponsored Link

Git : Install Git for Windows2024/09/13

 

It's possible to access to Git repositories from Windows Clients, too.

For example, Install Git for Windows on Windows 11.
Download Git for Windows from the site below.
⇒ https://gitforwindows.org/

[1] During Installation, you need to select some settings. (proceed to keep default all on this example)
After installation, [Git Bash], [Git CMD], [Git GUI] are added like follows.
[2] After installing Git for Windows, it's also possible to use Git command on Windows PowerShell.
Windows PowerShell
Copyright (C) Microsoft Corporation. All rights reserved.

PS C:\Users\hiroyuki> mkdir work

    Directory: C:\Users\hiroyuki


Mode                 LastWriteTime         Length Name
----                 -------------         ------ ----
d-----         9/13/2024  12:03 AM                work

PS C:\Users\hiroyuki> cd work
PS C:\Users\hiroyuki\work> git clone https://freebsd@dlp.srv.world/git/project02.git
Cloning into 'project02'...
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 0 (from 0)
Receiving objects: 100% (3/3), done.

PS C:\Users\hiroyuki\work> ls

    Directory: C:\Users\hiroyuki\work


Mode                 LastWriteTime         Length Name
----                 -------------         ------ ----
d-----         9/13/2024  12:04 AM                project02

PS C:\Users\hiroyuki\work> cd project02
PS C:\Users\hiroyuki\work\project02> ls

    Directory: C:\Users\hiroyuki\work\project02


Mode                 LastWriteTime         Length Name
----                 -------------         ------ ----
-a----         7/23/2024   8:16 PM             10 testfile1.txt

PS C:\Users\hiroyuki\work\project02> echo testfile > testfile2.txt
PS C:\Users\hiroyuki\work\project02> git add testfile2.txt
PS C:\Users\hiroyuki\work\project02> git config --global user.name "Server World"
PS C:\Users\hiroyuki\work\project02> git config --global user.email "freebsd@win01.srv.world"
PS C:\Users\hiroyuki\work\project02> git commit testfile2.txt -m "commit testfile2.txt"
[master fbc1bf4] commit testfile2.txt
 1 file changed, 0 insertions(+), 0 deletions(-)
 create mode 100644 testfile2.txt
PS C:\Users\hiroyuki\work\project02> git remote -v
origin  https://freebsd@dlp.srv.world/git/project02.git (fetch)
origin  https://freebsd@dlp.srv.world/git/project02.git (push)
PS C:\Users\hiroyuki\work\project02> git push origin master
Enumerating objects: 4, done.
Counting objects: 100% (4/4), done.
Delta compression using up to 2 threads
Compressing objects: 100% (2/2), done.
Writing objects: 100% (3/3), 306 bytes | 306.00 KiB/s, done.
Total 3 (delta 0), reused 0 (delta 0), pack-reused 0 (from 0)
To https://dlp.srv.world/git/project02.git
   49af1a1..fbc1bf4  master -> master
PS C:\Users\hiroyuki\work\project02> git ls-files
testfile1.txt
testfile2.txt
[3] To run [Git GUI], it's possible to use Git repositories on GUI.
Matched Content