Skip to content

Created a guide to using Azure and Github #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 48 commits into from
Jan 28, 2023
Merged
Changes from 1 commit
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
1ba8a21
Create Github Quick Start.md
wangyf2001 Dec 2, 2022
a2608f3
Create images
wangyf2001 Dec 4, 2022
8c26a05
Delete images
wangyf2001 Dec 4, 2022
ec794c2
Create Azure
wangyf2001 Dec 4, 2022
db4c91d
Delete Azure
wangyf2001 Dec 4, 2022
a1346d4
Create abc.js
wangyf2001 Dec 4, 2022
1b8e54e
Add files via upload
wangyf2001 Dec 4, 2022
1ccba73
Delete images/Azure directory
wangyf2001 Dec 4, 2022
8817a95
Create abc.js
wangyf2001 Dec 4, 2022
4e9adea
Create abc.js
wangyf2001 Dec 4, 2022
738c1da
Add files via upload
wangyf2001 Dec 4, 2022
8b49ceb
Add files via upload
wangyf2001 Dec 4, 2022
a1484a7
Delete abc.js
wangyf2001 Dec 4, 2022
c0eacd6
Create How to creat disk in Azure.md
wangyf2001 Dec 4, 2022
478284c
Update Github Quick Start.md
wangyf2001 Dec 4, 2022
60b40d7
Update Github Quick Start.md
wangyf2001 Dec 4, 2022
71e7ce5
Update Github Quick Start.md
wangyf2001 Dec 4, 2022
d9b309d
Rename Github Quick Start.md to Github-Quick-Start.md
wangyf2001 Dec 4, 2022
ac2fbb3
Rename How to creat disk in Azure.md to How-to-creat-disk-in-Azure.md
wangyf2001 Dec 4, 2022
f93e79a
Update README.md
wangyf2001 Dec 4, 2022
3af84eb
Update README.md
wangyf2001 Dec 4, 2022
3e55d5e
Update README.md
wangyf2001 Dec 4, 2022
3b16619
Delete abc.js
wangyf2001 Dec 4, 2022
6f2c1a0
Delete Github1.jpg
wangyf2001 Dec 6, 2022
c3f6c9d
Create gi.js
wangyf2001 Dec 6, 2022
59126bf
Add files via upload
wangyf2001 Dec 6, 2022
65682c8
Delete gi.js
wangyf2001 Dec 6, 2022
8fe66a6
Update Github-Quick-Start.md
wangyf2001 Dec 6, 2022
596dfea
Update and rename How-to-creat-disk-in-Azure.md to How-To-Create-Disk…
wangyf2001 Dec 6, 2022
e3fb5f1
Update How-To-Create-Disk-In-Azure.md
wangyf2001 Dec 6, 2022
2879976
Add files via upload
wangyf2001 Dec 6, 2022
f03106f
Add files via upload
wangyf2001 Dec 6, 2022
638f638
Add files via upload
wangyf2001 Dec 6, 2022
8956a5a
Add files via upload
wangyf2001 Dec 6, 2022
56b1a73
Update How-To-Create-Disk-In-Azure.md
wangyf2001 Dec 6, 2022
d416171
Add files via upload
wangyf2001 Dec 6, 2022
753b5e9
Delete image1.png
wangyf2001 Dec 6, 2022
66ce6ef
Delete image8.png
wangyf2001 Dec 6, 2022
89d3d60
Delete image7.png
wangyf2001 Dec 6, 2022
592fb70
Delete image6.png
wangyf2001 Dec 6, 2022
3a02093
Delete image5.png
wangyf2001 Dec 6, 2022
9fd25ec
Delete image4.png
wangyf2001 Dec 6, 2022
cbb62d8
Delete image3.png
wangyf2001 Dec 6, 2022
6fad8f3
Delete image2.png
wangyf2001 Dec 6, 2022
41149a5
Update How-To-Create-Disk-In-Azure.md
wangyf2001 Dec 7, 2022
1f74ab5
Add files via upload
wangyf2001 Dec 7, 2022
0a895cd
Update Github-Quick-Start.md
wangyf2001 Dec 7, 2022
58348f0
Delete image1.jpg
wangyf2001 Dec 7, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions Github Quick Start.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# Github Quick Start
## 1.Code Download
> git clone

Add the link obtained from the corresponding project to copy the project locally.
## 2.Default Agreement
If the command provided in the documentation does not explicitly specify a directory, it means that the command is executed in the directory of the downloaded folder.
## 3.User Settings
The download of code in Github does not require authentication, but the upload of code requires authentication, which requires some local configuration.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Download a private repo also needs authentication.

> git config --global user.name YourUserName
> git config --global user.email YourEmail

Generate your own key
>ssh-keygen -t rsa -C YourEmail

Keep pressing enter and the key will be saved in the default directory.
View Key
> cd ~/.ssh/
> vim id_rsa.pub

Copy the key to the corresponding project on Github to complete the authentication.
![](https://github.com/wangyf2001/Azure-picture/blob/main/Github1.jpg)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you upload the pic to this repo?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This photo can be viewed normally on the web, I see the convention is to transfer the picture to the cloud and then link it like this.



## 4.Code Upload
### Code Modification
Generally the cloned code will go to the master branch by default, we need to create a separate branch and make changes to the code on our own branch.
> git branch your-Alias/filename
> git checkout your-Alias/filename

### Code Submission
After making changes on the cloned document, you can start the code commit process.
Add the changes to the staging area
> git add yourfilename

Adding cache contents to the local repository.
> git commit -m ‘Your File Note’

Submitting code to the cloud repository.
> git push --set-upstream origin your-Alias/filename

# Some good learning documents of Github
[Github configuration and use](http://t.zoukankan.com/jiaxblog-p-9574441.html"github配置及使用")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please provide mark this as Chinese article.


[Github docs](https://docs.github.com/cn"github官方文档")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please provide both Chinese and English version from Github docs.