From fd5f96b019a77729253b49e0bce38c08b5e051c9 Mon Sep 17 00:00:00 2001 From: CodeDevError Date: Tue, 6 Aug 2024 16:31:12 +0100 Subject: [PATCH] Create .gitignore --- .gitignore | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..22af234 --- /dev/null +++ b/.gitignore @@ -0,0 +1,47 @@ +# Navigate to your project directory +cd path/to/your/project + +# Initialize a new Git repository (if not already done) +git init + +# Create a .gitignore file and add content +echo "## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. + +# User-specific files +*.rsuser +*.suo +*.user +*.userosscache +*.sln.docstates + +# User-specific files (Mono Auto Generated) +mono_crash.* + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +bld/ +[Bb]in/ +[Oo]bj/ +[Ll]og/ +.vs/ +.vscode/" > .gitignore + +# Add all files to the staging area +git add . + +# Commit the changes +git commit -m "Add .gitignore file" + +# Add the remote repository URL (replace with your repository URL) +git remote add origin https://github.com/yourusername/your-repo-name.git + +# Push the code to the master branch on GitHub +git push -u origin master