Regarding free domaining

i need free domain except freenom or github

please help me :frowning:

Netlify:

Git Commands

  1. Initialize a repo

  2. git init
  • Add to local repo

  1. git add .
  • Commit to local repo

  1. git commit -m ‘Initial Commit’
  • Add remote github repo

  1. git remote add origin https://github.com/USERNAME/REPO.git
  • Initial push

  1. git push -u origin master
  • Pushes after initial

  1. git push