zoukankan      html  css  js  c++  java
  • git 初次使用教程

    git 使用

    首先在Gitee码云仓库创建对应的仓库

    下载git

    在Windows桌面上单击鼠标右键------选择Git Bash Here-----进入GUI交互界面

    git config --local user.name "名称"

    git config --local user.email "邮箱"

    初始化版本库
    git init
    提交暂存
    git add -A
    提交修改内容
    git commit -m "first commit”

    指定云端的项目地址
    git remote add origin https://gitee.com/用户名/项目名称.git

    本地文件推送同步到远端
    git push -u origin master

    拉取云端文件
    git pull origin master --allow-unrelated-histories

    《提示》:当你输入错误用户名和密码 需要清掉配置
    git config --system --unset credential.helper

    Git 忽略文件(不想上传的文件)

    在项目根目录下创建 .gitignore文件

    vim .gitignore
    将要忽略的文件输入到文件中
    vim 命令 a:插入 wq:保存退出

    使忽略文件生效
    使用git base 进入命令行
    清除缓存
    git rm -r --cached .
    重新添加
    git add .
    提交
    git commit -m 'update .gitignore'

    centos--Django项目后台不挂断运行

    1、安装screen
    yum install -y screen

    2、新建一个screen
    screen -S xiedi

    这样会新开一个窗口,然后执行命令即可
    python manage.py runserver 0.0.0.0:9000

    3、重开一个窗口,列出所有screen进程,如下

    `
    [root@docker ~]# screen -ls

    There are screens on:

      3029.xiedi    (Attached)
    

    4、如果想链接上这个会话,执行命令即可
    screen -r 3029
    `

    初次推送本地项目到云端

    C:UsersAdministrator>cd Desktop C:UsersAdministratorDesktopmallmall>dir C:UsersAdministratorDesktopmallmall>git add . C:UsersAdministratorDesktopmallmall>dir C:UsersAdministratorDesktopmallmall> git commit -m ‘提交说明' C:UsersAdministratorDesktopmallmall>git push -u origin master

    初次拉取云端项目

    `
    [root@ ~]# yum install git
    [root@ ~]# git config --global user.name "YourGitName"
    [root@ ~]# git config --global user.email "YourEmailAddress"
    [root@ ~]# ssh-keygen -t rsa -C "YourEmailAddress"
    [root@ ~]# cat ~/.ssh/id_rsa.pub
    [root@ ~]# ssh git@github.com
    [root@ ~]# yum install -y screen
    [root@ ~]# screen -ls
    [root@ ~]# screen -r 2493
    [root@ ~]# cd home
    [root@ ~]# cd django
    [root@ ~]# git clone https://github.com/YourEmailAddress/mall.git

  • 相关阅读:
    (二)vue的生命周期及相关的运行流程
    Vue接入百度地图显示及相关操作
    前端开发环境的介绍
    更改博客园的样式
    Ant Design of Vue 组件库的使用
    Vue 更换页面图标和title
    (四) Vue 相关的路由配置(及子路由配置)
    SVN创建分支的相关操作
    vs code插件自动压缩 min.css
    敲开通往架构师的门
  • 原文地址:https://www.cnblogs.com/justblue/p/13022059.html
Copyright © 2011-2022 走看看