DEV Community

Sudhanshu Ambastha
Sudhanshu Ambastha

Posted on • Updated on

GitHub

  1. GitHub Commit Messages:-
    following are the commits which I use for uploading or updating parts of code to GitHub repo:-
    1)✅done - work done or work finish
    2)🚫not done - incomplete or not done
    3)⬆update - updating code
    4)🚀feat- a new feature
    5)🪲bug- there is a bug in code
    6)🛠️fix - a bug fix
    7)📄docs - changes in documentation
    8)💅style- everything related to styling
    9)🔄refactor - code changes that neither fixes a bug or adds a feature
    10)🧪test - everything related to testing
    11)🧹chore - updating build tasks, package manager configs, etc
    12)➕code - adding some code lines or files
    13)➖code - removing extra code line or files
    13)➡️📁 moving into the different folder for arranging files properly to find things easily

  2. Gitbash Commit Commands
    Inside VScode terminal

git init (for initialization)
git add . (for adding file)
git commit -m "➕code" (msg)
git branch -M main (for committing to that branch) 
git remote add origin https://github.com/Sudhanshu-Ambastha/repo-name.git (for setting repo)
git push -u origin main (for pushing to github)
git branch main (for switch branch)
git status (after add check is the update got stazed)
git branch (for checking available branches)
git branch branchname (for creating branch)
git branch -d branchname (for del branch)
git merge branchname(name of branch which you want to merge to main)
Enter fullscreen mode Exit fullscreen mode
  1. VScode Extensions I use:- List of Extensions which I use in vs code:-

1).NET Install Tool by Microsoft.com
2)Auto Close Tag by Jun Han
3)Auto Rename Tag by Jun Han
4)Auto-Open Markdown Preview by hnw
5)automatic-jsonc by nicu-chiciuc
6)Azure Repos by Microsoft.com
7)Blackbox AI Code Generation, Code Chat, Code Search by BLACKBOX AI
8)C# by Microsoft.com
9)C# Dev Kit by Microsoft.com
10)ChatGPT - Unfold AI by Unfold AI
11)Code Runner by Jun Han
12)Code Spell Checker by Street Side Software
13)Cody AI by Sourcegraph
14)CSS Custom Properties by Tock
15)Debugger for Java by Microsoft.com
16)Error Lens by Alexander Lens
17)ESLint by Microsoft.com
18)Extension Pack for Java by Microsoft.com
20)Figma for VS Code by figma.com
21)Font Awesome by Thinker
22)GitHub Repositories by GitHub Repositories
23)GitLens — Git supercharged by GitKraken
24)IntelliCode by Microsoft.com
25)IntelliCode API Usage Examples by Microsoft.com
26)IntelliCode for C# Dev Kit by Microsoft.com
27)Jest by Orta
28)Jest Runner by firsttris
29)Jupyter by Microsoft.com
30)Jupyter Cell Tags by Microsoft.com
31)Jupyter Keymap by Microsoft.com
32)Jupyter Notebook Renderers by Microsoft.com
33)Jupyter Slide Show by Microsoft.com
34)Kodezi AI, (Autocorrect & More) - for Python, JavaScript, TypeScript, C++, PHP, Java, C#, Ruby & more by kodezi.com
35)Language Support for Java(TM) by Red Hat by redhat.com
36)Live Server by Ritwick Dey
37)Live Server (Five Server) by Yannick
38)Markdown All in One by Yu Zhang
39)Material Icon Theme by Philipp Kief
40)Maven for Java by Microsoft.com
41)Microsoft Edge Tools for VS Code by Microsoft.com
42)open in browser by TechER
43)Peacock by John Papa
44)Prettier - Code formatter by prettier.io
45)Project Manager for Java bu Microsoft.com
46)Pylance by Microsoft.com
47)Python by Microsoft.com
48)Rainbow CSV by mechatroner
49)Remote - Tunnels by Microsoft.com
50)Remote Explorer by Microsoft.com
51)Remote Repositories by Microsoft.com
52)Ruby LSP by shopify.com
53)ruby-rubocop-revived by codedivision.nl
54)Run Terminal Command by Adrian Wilczynski
55)Sonic Pi by Jackson Kearl
56)stlite byYuichiro Tachibana
57)Test Runner for Java by Microsoft.com
58)typeof-jsonc by wulunyi
59)VSCode rdbg Ruby Debugger by Koichi Sasada
60)vscode-pets by Anthony Shaw
61)vscode-styled-components by styled-components.com
62)Turbo Console Log by Anas Chakroun
63)Live Share by Microsoft.com
64)Todo+ by Fabio Spampinat

Top comments (0)