iT邦幫忙

2022 iThome 鐵人賽

DAY 27
0
Modern Web

用 Node.js 打造後端 API系列 第 27

Day 27 - Push API到GitHub上

  • 分享至 

  • xImage
  •  

前言


我們會利用git將CodingSchool API push到GitHub上
所以要先下載後再follow後面的steps

步驟


  • 建立一個新的repository
  • 複製新的repo的URL
  • 在project的資料夾中初始化git
  • 將所有的files從working directory轉移到staging area
  • 將所有的files從staging area轉移到local repository
  • 將files push到remote repository (GitHub)

實際在termial的操作如下:

# 初始化git
git init

# files to staging area
git add .

# files to local repo
git commit -m 'Inital commit'

# 新增remote repo位置
git remote add origin {repo_url}.git

# push to GitHub
git push -u -f origin master

要注意的是,push作品到GitHub時
會被要求輸入你的username&password
password並不是要你輸入GitHub的密碼
而是要另外申請一組Personal access tokens (PAT)
https://ithelp.ithome.com.tw/upload/images/20221005/20151654F9VpWiHdsW.png
在輸入密碼時貼上生成的PAT


上一篇
Day 26 - 生成API文件
下一篇
Day 28 - 透過Cloud VM部署API
系列文
用 Node.js 打造後端 API30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言