14 行
无行尾
372 B
Markdown
14 行
无行尾
372 B
Markdown
# mql5
|
|
|
|
Creating a new repository on the command line
|
|
touch README.md
|
|
git init
|
|
git switch -c main
|
|
git add README.md
|
|
git commit -m "first commit"
|
|
git remote add origin https://forge.mql5.io/4kk4/4kk4.MQL5.git
|
|
git push -u origin main
|
|
|
|
Pushing an existing repository from the command line
|
|
git remote add origin https://forge.mql5.io/4kk4/4kk4.MQL5.git
|
|
git push -u origin main |