Windows update the home folder under git bash

--

On git bash of windows, if you wanna update the home folder, do the following

# check the old home folder
echo $HOME
# update the home folder to a new location
export HOME={new_home_folder_path}

--

--