標籤:

關於 Git SSH 使用的項目實踐

Git 是分散式的代碼管理工具,遠程的代碼管理是基於 SSH 的,所以要使用遠程的 git 則需要SSHn的配置。n

簡述

訪問 Git 倉庫可以使用 SSH Key 的方式,首先需要生成 Key.

使用 SSH- Agent 配置公私鑰,Windows 下需要安裝 Github for Windows 或者 myssgit.

1.生成公、私鑰

ssh-keygen -t rsa -b 4096 -c "silence"

2.啟動 agent

ssh-agent -s 或者 $(ssh-agent -s)

3.添加

ssh-add 命令後面加上私有的key文件路徑

項目

基礎知識

Python 基礎知識

Web 開發相關基礎知識

  • HTML
  • CSS&JS(了解)
  • Bootstrap

Django 基本使用

  • MVC
  • ORM
  • template
  • admin

Markdown

項目創建

第三方安裝包

項目創建&APP

配置 APP

代碼走讀

創建文章 Model 類

定義 View 獲取博客列表&博客詳情

Template 顯示博客列表&博客詳情

定義 APP urls 映射

定義項目 url 映射

使用 makemigrateions 生成遷移文件

使用migrate遷移資料庫

createsuperuser 創建後台管理員

python manage.py createsuperuser

runserver 命令啟動 web 伺服器

python manage.py runserver 0.0.0.0:8888

項目鏈接

pan.baidu.com/s/1slsLJj 密碼:nh15

這是本次關於 Git SSH 使用的實踐項目的源碼。

推薦閱讀:

【Trac】瀏覽器中查看源碼庫
git本地倉庫關聯多個remote,怎麼用本地一個分支向不同remote不同分支推送代碼?
git branch 相關操作
精讀《When You 「Git」 in Trouble- a Version Control Story》

TAG:Git |