Giter Site home page Giter Site logo

imilano.github.io's Introduction

Hi there 👋

To be continue...

imilano.github.io's People

Contributors

asimumba avatar atusy avatar cderv avatar charlescara avatar comfreek avatar condwanaland avatar cyrusyip avatar davidhunterwalsh avatar emilyriederer avatar haozhu233 avatar idealvin avatar imilano avatar jeroen avatar jienagu avatar jinjipang avatar liechi avatar liutiming avatar loreliu avatar malcook avatar maxheld83 avatar naveen521kk avatar paulrougieux avatar pooyataher avatar robinsones avatar salim-b avatar shrektan avatar tcgriffith avatar xiaosongz avatar yihui avatar yulijia avatar

Stargazers

 avatar

imilano.github.io's Issues

Git 基本用法总结(1) — Kevin's Blog

https://codecracker.cn/2019/02/01/Git-%E5%9F%BA%E6%9C%AC%E7%94%A8%E6%B3%95%E6%80%BB%E7%BB%93-1/

[TOC]原理篇记录变更(add/diff/rm)1. add、commit 和 push 做了什么如果一个文件没有被存入暂存区,那么git add filename表示开始追踪该文件。如果该文件已经被存入暂存区,那么git add filename表示暂存该文件。我们添加了文件之后,git commit表示提交本次的更改。git push表示把本次更改推送到远程服务器。2. 工作目录与暂存区工作目录下的文件分为两种状态,已跟踪(tracked)和未跟踪(untracked)。已跟踪文件又可以分为未修改(unmodified)文件、已修改文件(modified)和已暂存(staged)文件。我们可以用git add filename跟踪文件(把文件添加入暂存区),git status查看 git 状态。下面是 git 文件的生命周期图:3. 查看暂存区和未暂存的变更git status输出的内容过于广泛/粗略,如果要查看详细信息,我们需要使用git diff。下述命令查看尚未添加到暂存区的变更:git diff如果我们已经知道已经添加进入暂存区的文件中,本次提交会提交哪些内容,则可执行下述命令:git diff --staged4. 提交变更我们使用git commit命令来提交变更。一般来说,我们推荐使用-m参数附加上简略的描述信息,就像下面这样:git commit -m

PowerShell — Kevin's Blog

https://codecracker.cn/wiki/powershell/

使用 PowerShell 打造 Windows 下的顺手终端。与 Cmder 配合使用搭配 Cmder 一起服用,才最好。配置文件位置默认配置文件 ~/Documents/WindowsPowerShell/Microsoft.PowerShell_profile.ps1。Cmder 的 PowerShell 配置文件 <cmd_install_path>/config/user-profile.ps1。alias快速进入某目录例:通过 src 命令快速进入 d:\sources\ 目录。function Enter-Sources { cd d:\sources}Set-Alias src Enter-Sources快速打开当前文件夹例:通过 e. 命令快速在资源管理器打开当前文件夹。function Open-Current-Directory { explorer .}Set-Alias e. Open-Current-Directorygit 相关命令## gs=git statusfunction Git-Status { git status}Set-Alias gs Git-Status## ga=git add .function Git-Add-All { git add .}Set-Alias ga Git-Add-All## gg=gitkfunction Git-Gui { gitk}Set-Alias gg Git-Guiobjdumpfunction Obj-Dump { D:\Android\sdk\ndk-bundle\toolchains\x86_64-4.9\prebuilt\windows-x86_64\bin\x86_64-linux-android-objdump.exe $args}Set-Alias objdump Obj-Dump快捷键映射从 Linux/macOS 的 bash 甚至 Windows 的 cmd 下切换过来后,发现 ctrl-u、ctrl-k 等快捷键不可用了,各种不顺手,PSReadLine 拯救你。# ctrl-k, ctrl-u, ctrl-a, ctrl-e, ctrl-b, ctrl-f, etcImport-Module PSReadLineSet-PSReadLineOption -EditMode Emacs

坚持写博客 — imilano

https://zhulinchao.fun/2018/12/20/%E5%9D%9A%E6%8C%81%E5%86%99%E5%8D%9A%E5%AE%A2/

今天偶然间,在曹大的小蜜圈看到大佬们谈到写作最后给自己带来了什么。具体的已经记不清了,大致记得是说:一个人一生会碰上很多朋友,但是到了最后,却发现自己连个说话的人都没有。底下有人评论道,” 所以这就是写作的意义,写作就是与自己对话,见天地,见众生,最后,见自己。 “我的博客,就是我来到 这个世界的痕迹。

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.