Skip to content

Instantly share code, notes, and snippets.

View amina-mardiyyah's full-sized avatar

Amina Mardiyyah Rufai amina-mardiyyah

View GitHub Profile
@amina-mardiyyah
amina-mardiyyah / git-lfs-install.md
Created July 23, 2024 13:15 — forked from pourmand1376/git-lfs-install.md
Single User Installation of Git-LFS without sudo

I wanted to install GIT-Lfs on my user account without access to server root account. I write this to my future self.

  1. Download tar.gz file from git-lfs website.
wget https://github.com/git-lfs/git-lfs/releases/download/v3.2.0/git-lfs-linux-amd64-v3.2.0.tar.gz

2.Untar it

tar xvf git-lfs-linux-amd64-v3.2.0.tar.gz
@amina-mardiyyah
amina-mardiyyah / scriptinng_solustions.sh
Last active January 24, 2021 13:40
Learning how to use Command Line Interface and Bash Scripting at AMMI-2021
#!/bin/bash
#Exercise on command line interface
echo "****Exercise on Comand Line Interface****"
#Navigating to directory
pwd #Check current directory
cd /Users/diyyah;ls #new directory and list command
cd AMMI;ls
cd BashScript;ls