Yuchao's Blog

Hello World

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer ...
Read more

C# WriteLine()

C#
There are two ways to call WriteLine() function in C#. First solution:123using System;Consolel.WriteLine("XXXXXX"); Second solution:123u ...
Read more

Change Build Verbosity In Visual Studio

Visual Studio
When I trying to build my solution, it failed with the following error message:12Found conflicts between different versions of the same dependent ...
Read more

How to create a Hexo post

Hexo
OverviewThis is my personal blog. It consists from three git repositories. My customized theme my-vevx which is based on hexo-theme-vexo. It is ...
Read more

How to undo 'git add'

Git
Revert staged file in GitUnstage specific file1git reset <file> Unstage all files1git reset More Information: How to undo ‘git add’ before c ...
Read more

Git Stash

Git
If you want see the preview of your git stash content without applying them. You can use git stash show command to do so. Preview the content of t ...
Read more

Rename Local Branch

Git
Rename your local branchon the target branch you want to rename1git branch -m new_name on a different branch1git branch -m old_name new_name More ...
Read more

Introduce Myself

About Me
Hello I am Yuchao Zhou. Currently I am a Software Engineer @ Microsoft in Great Seattle Area. Checkout my Linkedin Page. Education Northwestern Un ...
Read more