# 算法与数据结构java **Repository Path**: ayuanyuan1/algorithm-and-data-structure ## Basic Information - **Project Name**: 算法与数据结构java - **Description**: 基于java语言的算法与数据结构 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-09-07 - **Last Updated**: 2021-09-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 算法与数据结构java 使用git 一.配置 配置全局的用户名:git config --global user.name "XXX" 配置全局的邮箱 :git config --global use.email "XXXX" 查看当前配置 :git config --list 二.提交代码 方法一: 1. 初始化仓库、连接远程仓库、将远程仓库代码拉取到本地 git init git remote add origin https:.... git pull origin master 2. 添加或修改本地文件 3. 将本地代码push到远程仓库 git add . git commit -m '注释' git push origin master