-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5e7ef83
commit b3d5dcc
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,29 @@ | ||
Test of me doing a rep from archlinux :D | ||
|
||
|
||
[yue@Yuurei-Arch ~]$ git config --global user.name "Yue-Kuze-Kurosawa" | ||
[yue@Yuurei-Arch ~]$ git config --global user.email "[email protected]" | ||
[yue@Yuurei-Arch ~]$ git init GitHub | ||
Initialized empty Git repository in /home/yue/GitHub/.git/ | ||
[yue@Yuurei-Arch ~]$ cd GitHub | ||
[yue@Yuurei-Arch GitHub]$ gedit README | ||
[yue@Yuurei-Arch GitHub]$ gedit sample.c | ||
[yue@Yuurei-Arch GitHub]$ git add README | ||
[yue@Yuurei-Arch GitHub]$ git add sample.c | ||
[yue@Yuurei-Arch GitHub]$ git commit -m "Linux Repo Commit Test" | ||
[master (root-commit) 5e7ef83] Linux Repo Commit Test | ||
2 files changed, 7 insertions(+) | ||
create mode 100644 README | ||
create mode 100644 sample.c | ||
[yue@Yuurei-Arch GitHub]$ git remote add origin https://github.com/Yue-Kuze-Kurosawa/Linux-Repo-Commit-Test.git | ||
[yue@Yuurei-Arch GitHub]$ git push origin master | ||
Username for 'https://github.com': Yue-Kuze-Kurosawa | ||
Password for 'https://[email protected]': | ||
Counting objects: 4, done. | ||
Delta compression using up to 4 threads. | ||
Compressing objects: 100% (3/3), done. | ||
Writing objects: 100% (4/4), 383 bytes | 383.00 KiB/s, done. | ||
Total 4 (delta 0), reused 0 (delta 0) | ||
To https://github.com/Yue-Kuze-Kurosawa/Linux-Repo-Commit-Test.git | ||
* [new branch] master -> master | ||
[yue@Yuurei-Arch GitHub]$ |