
git
Cherry Xie
喜欢学习,只是因为知识能让我更好地理解与处理遇到的事情。技术上比较全面,具备小程序、全栈、web3、数据分析、人工智能的开发经验。目前从事人工智能相关工作,欢迎知识理解上的交流。
展开
-
Git 中新增 .gitignore 文件和忽略规则
在 Git 中,.gitignore 文件用于指定哪些文件或目录不应该被 Git 跟踪和提交。这在开发过程中非常有用,可以避免把一些不必要的文件也提交到仓库中。原创 2024-05-19 08:45:00 · 790 阅读 · 0 评论 -
git 梳理
Docs https://git-scm.com/book/en/v2初始化gitgit initgit remote add origin git@localhost:Cherry/monthcard.gitgit add .git commit -m "Initial commit"git push -u origin master初始化.gitignoregit rm -r --cached .git add .git commit -m 'update .gitignore'原创 2021-01-15 15:07:13 · 90 阅读 · 0 评论