Skip to content

Instantly share code, notes, and snippets.

View huanguolin's full-sized avatar

Alvin Huang huanguolin

View GitHub Profile
@huanguolin
huanguolin / git-basic-cmd.md
Last active April 9, 2019 04:28
git basic cmd

git 常用命令

  • 查看状态

可以看到当前分支名,分支中是否有未提交的文件,stage 的文件等。

git status
@huanguolin
huanguolin / download-azure-blob-file.sh
Created October 13, 2017 07:02
List blobs or download file from Azure blob storage.
#!/bin/bash
# Download the file in an Azure storage container.
echo "usage: ${0##*/} <user-name> <user-key> <container-name> <blob-name>"
storage_account="$1"
access_key="$2"
container_name="$3"
blob_name="$4"